File: CMakeLists.txt

package info (click to toggle)
hdf5-filter-plugin 0.0~git20221111.49e3b65-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,848 kB
  • sloc: ansic: 14,374; sh: 11,445; cpp: 1,463; makefile: 100; python: 19; xml: 6
file content (23 lines) | stat: -rw-r--r-- 783 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#=============================================================================
# do some plugin specific configuration
#=============================================================================
find_package(BZip2 REQUIRED)

if(CMAKE_SYSTEM_NAME MATCHES Windows)
    set(EXTERNAL_LIBRARIES ${PROJECT_BINARY_DIR}/bin/bz2.dll)
endif()

#=============================================================================
# setup the plugin name
#=============================================================================
set(PLUGIN_NAME h5bz2)

#=============================================================================
# adding required subdirectories
#=============================================================================
add_subdirectory(src)
add_subdirectory(test)