CMakeLists.txt 435 Bytes

PROJECT(themis_esafull2nc)

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

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

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

install (TARGETS themis_esafull2nc DESTINATION bin)