File: CMakeLists.txt

package info (click to toggle)
fcidecomp 2.1.1%2Bdeb1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,648 kB
  • sloc: ansic: 1,270; python: 829; sh: 294; makefile: 11
file content (15 lines) | stat: -rw-r--r-- 492 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cmake_minimum_required(VERSION 3.15.0)
project(fcidecomp)

# Set build directories
include(GNUInstallDirs)
set(HDF5_PLUGIN_INSTALL_PATH "${CMAKE_INSTALL_LIBDIR}/hdf5/serial/plugins" CACHE PATH
  "Where to install the dynamic HDF5-plugin")

# Build library
add_subdirectory(src/fcidecomp/fcicomp-jpegls)

# Build filter plugin
set(FCICOMP_JPEGLS_INCLUDE_DIR ../fcicomp-jpegls/include/)
add_subdirectory(src/fcidecomp/fcicomp-H5Zjpegls)
TARGET_LINK_LIBRARIES (H5Zjpegls PRIVATE fcicomp_jpegls)