2017-03-09 08:01:10 +08:00
|
|
|
IF(BUILD_SHARED_LIBS AND WIN32)
|
|
|
|
remove_definitions(-DDLL_EXPORT)
|
|
|
|
remove_definitions(-DDLL_NETCDF)
|
|
|
|
ENDIF()
|
|
|
|
|
|
|
|
SET(ncgen_FILES generate.c main.c cdata.c bindata.c genchar.c cvt.c data.c debug.c escapes.c genc.c genbin.c generr.c genlib.c getfill.c odom.c semantics.c ncgeny.c dump.c util.c bytebuffer.c list.c genf77.c f77data.c genj.c jdata.c nc_iter.c ConvertUTF.c ncgen.h)
|
|
|
|
|
|
|
|
# don't add the automatically determined parts of the RPATH
|
|
|
|
# which point to directories outside the build tree to the install RPATH
|
|
|
|
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH FALSE)
|
|
|
|
|
2012-08-04 06:24:29 +08:00
|
|
|
|
2012-09-14 06:07:35 +08:00
|
|
|
IF(USE_X_GETOPT)
|
2014-04-22 00:56:57 +08:00
|
|
|
SET(ncgen_FILES ${ncgen_FILES} XGetopt.c)
|
2012-09-14 06:07:35 +08:00
|
|
|
ENDIF()
|
|
|
|
|
2012-08-04 06:24:29 +08:00
|
|
|
ADD_EXECUTABLE(ncgen ${ncgen_FILES})
|
2012-08-11 05:44:00 +08:00
|
|
|
TARGET_LINK_LIBRARIES(ncgen netcdf ${ALL_TLL_LIBS})
|
2012-08-04 06:24:29 +08:00
|
|
|
|
2015-01-28 04:57:51 +08:00
|
|
|
####
|
|
|
|
# We have to do a little tweaking
|
|
|
|
# to remove the Release/ and Debug/ directories
|
|
|
|
# in MSVC builds. This is required to get
|
|
|
|
# test scripts to work.
|
|
|
|
####
|
|
|
|
IF(MSVC)
|
2015-11-25 06:16:23 +08:00
|
|
|
SET_TARGET_PROPERTIES(ncgen PROPERTIES RUNTIME_OUTPUT_DIRECTORY
|
2015-01-28 04:57:51 +08:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR})
|
2015-11-25 06:16:23 +08:00
|
|
|
SET_TARGET_PROPERTIES(ncgen PROPERTIES RUNTIME_OUTPUT_DIRECTORY_DEBUG
|
2015-01-28 04:57:51 +08:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
SET_TARGET_PROPERTIES(ncgen PROPERTIES RUNTIME_OUTPUT_DIRECTORY_RELEASE
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
ENDIF()
|
|
|
|
|
2012-11-20 05:43:12 +08:00
|
|
|
INSTALL(TARGETS ncgen DESTINATION bin COMPONENT utilities)
|
2012-08-04 06:24:29 +08:00
|
|
|
|
2013-01-16 06:43:09 +08:00
|
|
|
# Copy the input for the flex file (ncgen.l)
|
|
|
|
FILE(GLOB COPY_FILES ${CMAKE_CURRENT_SOURCE_DIR}/*.l ${CMAKE_CURRENT_SOURCE_DIR}/*.y)
|
|
|
|
FILE(COPY ${COPY_FILES} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/)
|
|
|
|
|
2012-08-09 00:25:37 +08:00
|
|
|
# Stuff to build if tests are enabled.
|
2012-08-08 06:42:42 +08:00
|
|
|
IF(ENABLE_TESTS)
|
2014-04-22 00:56:57 +08:00
|
|
|
FILE(GLOB COPY_FILES ${CMAKE_CURRENT_SOURCE_DIR}/*.cdl ${CMAKE_CURRENT_SOURCE_DIR}/*.sh)
|
2015-11-25 06:16:23 +08:00
|
|
|
FILE(COPY ${COPY_FILES} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/ FILE_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE)
|
2014-04-22 00:56:57 +08:00
|
|
|
add_sh_test(ncgen run_tests)
|
|
|
|
IF(USE_NETCDF4)
|
|
|
|
add_sh_test(ncgen run_nc4_tests)
|
|
|
|
ENDIF()
|
2012-08-08 06:42:42 +08:00
|
|
|
ENDIF()
|
2012-08-04 06:24:29 +08:00
|
|
|
|
2012-10-18 05:14:30 +08:00
|
|
|
SET(MAN_FILES ncgen.1)
|
2012-12-21 05:50:45 +08:00
|
|
|
IF(NOT MSVC)
|
2014-04-22 00:56:57 +08:00
|
|
|
INSTALL(FILES ${MAN_FILES} DESTINATION "share/man/man1"
|
|
|
|
COMPONENT documentation)
|
2012-12-21 05:50:45 +08:00
|
|
|
ENDIF()
|
2012-08-28 05:49:09 +08:00
|
|
|
SET(CLEANFILES c0.nc c0_64.nc c0_4.nc c0_4c.nc ref_camrun.c)
|
|
|
|
SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${CLEANFILES}")
|
|
|
|
|
2015-11-20 04:44:07 +08:00
|
|
|
# These rules are used if someone wants to rebuild ncgeny.c or ncgenl.c
|
2014-12-29 06:54:02 +08:00
|
|
|
# Otherwise never invoked, but records how to do it.
|
|
|
|
# BTW: note that renaming is essential because otherwise
|
|
|
|
# autoconf will forcibly delete files of the name *.tab.*
|
|
|
|
|
2013-01-16 06:43:09 +08:00
|
|
|
ADD_CUSTOM_COMMAND(
|
2014-04-22 00:56:57 +08:00
|
|
|
OUTPUT ncgentab.h
|
2016-07-07 05:32:53 +08:00
|
|
|
COMMAND flex -Pncg -8 ncgen.l
|
2015-11-20 04:44:07 +08:00
|
|
|
COMMAND rm -f ncgenl.c
|
|
|
|
COMMAND mv lex.ncg.c ncgenl.c
|
2016-05-12 05:31:17 +08:00
|
|
|
|
2014-04-22 00:56:57 +08:00
|
|
|
COMMAND bison -pncg -t -d ncgen.y
|
2015-11-20 04:44:07 +08:00
|
|
|
COMMAND rm -f ncgeny.c ncgeny.h
|
|
|
|
COMMAND mv ncgen.tab.c ncgeny.c
|
|
|
|
COMMAND mv ncgen.tab.h ncgeny.h
|
|
|
|
COMMAND mv ncgeny.h ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
COMMAND mv ncgeny.c ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
COMMAND mv ncgenl.c ${CMAKE_CURRENT_SOURCE_DIR}
|
2014-04-22 00:56:57 +08:00
|
|
|
|
|
|
|
)
|
2015-11-25 06:16:23 +08:00
|
|
|
ADD_CUSTOM_TARGET(makeparser DEPENDS ncgentab.h)
|
2013-01-16 06:43:09 +08:00
|
|
|
|
2013-06-04 00:42:04 +08:00
|
|
|
## Specify files to be distributed by 'make dist'
|
|
|
|
FILE(GLOB CUR_EXTRA_DIST RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*.c ${CMAKE_CURRENT_SOURCE_DIR}/*.h ${CMAKE_CURRENT_SOURCE_DIR}/*.sh)
|
2017-03-21 04:28:38 +08:00
|
|
|
SET(CUR_EXTRA_DIST ${CUR_EXTRA_DIST} ncgen.y ncgenl.c ncgen.l internals.html c0.cdl c0_4.cdl ref_camrun.cdl ncf199.cdl tst_gattenum.cdl CMakeLists.txt Makefile.am ncgen.1)
|
2013-06-04 00:42:04 +08:00
|
|
|
ADD_EXTRA_DIST("${CUR_EXTRA_DIST}")
|