Blame view

src/TIMESUPDATE/CMakeLists.txt 365 Bytes
4b95fb97   Benjamin Renard   Add TimesUpdate &...
1
2
3
4

PROJECT(TimesUpdate)

include_directories(
bab9407b   Benjamin Renard   DDClient is now a...
5
  ${DDCLIENTINCLUDE_DIR}
4b95fb97   Benjamin Renard   Add TimesUpdate &...
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 (TimesUpdate ${source_files} )

target_link_libraries(
  TimesUpdate
bab9407b   Benjamin Renard   DDClient is now a...
20
  ${DDCLIENTLIBRARY}
4b95fb97   Benjamin Renard   Add TimesUpdate &...
21
22
23
24
  ${NETCDFLIBRARY}
)

install (TARGETS TimesUpdate DESTINATION bin)