Blame view

src/DECODERS/nc2nc/CMakeLists.txt 341 Bytes
bd9dfce2   Benjamin Renard   Add CALLEXT and D...
1
2
3
4

PROJECT(nc2nc)

include_directories(
bab9407b   Benjamin Renard   DDClient is now a...
5
  ${DDCLIENTINCLUDE_DIR}
bd9dfce2   Benjamin Renard   Add CALLEXT and D...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  ${NETCDFINCLUDE_DIR}
)

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

target_link_libraries(
  nc2nc
bab9407b   Benjamin Renard   DDClient is now a...
20
  ${DDCLIENTLIBRARY}
bd9dfce2   Benjamin Renard   Add CALLEXT and D...
21
22
23
24
  ${NETCDFLIBRARY}
)

install (TARGETS nc2nc DESTINATION bin)