Blame view

src/DECODERS/cdfnew2nc/CMakeLists.txt 403 Bytes
c8f4ea1d   Elena.Budnik   new cdf2nc, updat...
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(cdfnew2nc)

include_directories(
  ${DDCLIENTINCLUDE_DIR}
  ${NETCDFINCLUDE_DIR}
  ${libcdf_INCLUDE_DIR}
)

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

target_link_libraries(
  cdfnew2nc
  ${DDCLIENTLIBRARY}
  ${NETCDFLIBRARY}
  ${libcdf_LIBRARIES}
)

install (TARGETS cdfnew2nc DESTINATION bin)