From bb961c17fabea1c3c796131e5c4317cdfb21c9fa Mon Sep 17 00:00:00 2001 From: Piotr Krysik Date: Thu, 24 Aug 2017 15:35:42 +0200 Subject: Added versioning borrowed fron GNU Radio to gr-gsm --- lib/CMakeLists.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'lib/CMakeLists.txt') diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 1686de5..9880e58 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -21,6 +21,29 @@ # Setup library ######################################################################## include(GrPlatform) #define LIB_SUFFIX +include(GrMiscUtils) + +######################################################################## +# Handle the generated constants +######################################################################## +execute_process(COMMAND ${PYTHON_EXECUTABLE} -c + "import time;print time.strftime('%a, %d %b %Y %H:%M:%S', time.gmtime())" + OUTPUT_VARIABLE BUILD_DATE OUTPUT_STRIP_TRAILING_WHITESPACE +) +message(STATUS "Loading build date ${BUILD_DATE} into constants...") +message(STATUS "Loading version ${VERSION} into constants...") + +#double escape for windows backslash path separators +string(REPLACE "\\" "\\\\" prefix "${prefix}") + +configure_file( + ${CMAKE_CURRENT_SOURCE_DIR}/constants.cc.in + ${CMAKE_CURRENT_BINARY_DIR}/constants.cc + ESCAPE_QUOTES +@ONLY) + +list(APPEND grgsm_sources ${CMAKE_CURRENT_BINARY_DIR}/constants.cc) +######################################################################### include_directories(${Boost_INCLUDE_DIR} receiver) link_directories(${Boost_LIBRARY_DIRS}) @@ -85,6 +108,7 @@ target_link_libraries(grgsm ${Boost_LIBRARIES} ${GNURADIO_ALL_LIBRARIES} ${VOLK_ # boost_filesystem ) set_target_properties(grgsm PROPERTIES DEFINE_SYMBOL "grgsm_EXPORTS") +GR_LIBRARY_FOO(grgsm) ######################################################################## # Install built library files -- cgit v1.2.3