Blame view

src/DECODERS/themis/fgm2nc/CMakeLists.txt 396 Bytes
bd9dfce2   Benjamin Renard   Add CALLEXT and D...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

PROJECT(fgm2nc)

include_directories(
  ${CMAKE_HOME_DIRECTORY}/src/INCLUDE/
  ${NETCDFINCLUDE_DIR}
  ${libcdf_INCLUDE_DIR}
)

#Configuration de l'exécutable
file(
        GLOB_RECURSE
        source_files
        ./*
)
  
ADD_EXECUTABLE (fgm2nc ${source_files} )

target_link_libraries(
  fgm2nc
  DD_Client
  ${NETCDFLIBRARY}
  ${libcdf_LIBRARIES}
)

install (TARGETS fgm2nc DESTINATION bin)