Warning, /graphics/kst-plot/cmake/3rdparty/netcdf/libsrc/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 0002 project( libsrc ) 0003 0004 0005 set(SOURCES 0006 ${TOP_DIR}/libsrc/attr.c 0007 ${TOP_DIR}/libsrc/ncx.c 0008 ${TOP_DIR}/libsrc/putget.c 0009 ${TOP_DIR}/libsrc/dim.c 0010 ${TOP_DIR}/libsrc/error.c 0011 ${TOP_DIR}/libsrc/libvers.c 0012 ${TOP_DIR}/libsrc/nc.c 0013 ${TOP_DIR}/libsrc/string.c 0014 ${TOP_DIR}/libsrc/v1hpg.c 0015 ${TOP_DIR}/libsrc/var.c 0016 ${TOP_DIR}/libsrc/utf8proc.c 0017 ${TOP_DIR}/libsrc/posixio.c 0018 ) 0019 0020 set(HEADERS 0021 ${TOP_DIR}/libsrc/fbits.h 0022 ${TOP_DIR}/libsrc/nc.h 0023 ${TOP_DIR}/libsrc/ncio.h 0024 ${TOP_DIR}/libsrc/ncx.h 0025 ${TOP_DIR}/libsrc/netcdf.h 0026 ${TOP_DIR}/libsrc/onstack.h 0027 ${TOP_DIR}/libsrc/rnd.h 0028 ${TOP_DIR}/libsrc/netcdf3.h 0029 ${TOP_DIR}/libsrc/utf8proc.h 0030 ${TOP_DIR}/libsrc/utf8proc_data.h 0031 ${TOP_DIR}/libsrc/rename.h 0032 ) 0033 0034 include_directories(${TOP_DIR}/libsrc) 0035 0036 add_library(netcdf STATIC ${SOURCES} ${HEADERS}) 0037 0038 0039 install(FILES ${TOP_DIR}/libsrc/netcdf.h DESTINATION include) 0040 install(TARGETS netcdf DESTINATION lib) 0041