summaryrefslogtreecommitdiff
path: root/cmake/Modules/GrMiscUtils.cmake
diff options
context:
space:
mode:
authorJosh Blum2011-10-23 15:43:03 -0700
committerJosh Blum2011-10-23 15:43:03 -0700
commitfaf7dea043728056bed5a7eb0529162eb7d9f932 (patch)
tree339c17303ebd727c8c2aacf9c26a2bd99ee739dc /cmake/Modules/GrMiscUtils.cmake
parent9b58dc91c0bf5a87128a24d8e22a8e19aa974c9f (diff)
downloadgnuradio-faf7dea043728056bed5a7eb0529162eb7d9f932.tar.gz
gnuradio-faf7dea043728056bed5a7eb0529162eb7d9f932.tar.bz2
gnuradio-faf7dea043728056bed5a7eb0529162eb7d9f932.zip
the libraries
Diffstat (limited to 'cmake/Modules/GrMiscUtils.cmake')
-rw-r--r--cmake/Modules/GrMiscUtils.cmake68
1 files changed, 62 insertions, 6 deletions
diff --git a/cmake/Modules/GrMiscUtils.cmake b/cmake/Modules/GrMiscUtils.cmake
index 10de21c7c..90b75f4ef 100644
--- a/cmake/Modules/GrMiscUtils.cmake
+++ b/cmake/Modules/GrMiscUtils.cmake
@@ -90,10 +90,66 @@ endmacro(GR_INCLUDE_SUBDIRECTORY)
# - flag the compiler flag to check for
# - have the variable to set with result
########################################################################
-INCLUDE(CheckCXXCompilerFlag)
-MACRO(GR_ADD_CXX_COMPILER_FLAG_IF_AVAILABLE flag have)
+macro(GR_ADD_CXX_COMPILER_FLAG_IF_AVAILABLE flag have)
+ include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG(${flag} ${have})
- IF(${have})
- ADD_DEFINITIONS(${flag})
- ENDIF(${have})
-ENDMACRO(GR_ADD_CXX_COMPILER_FLAG_IF_AVAILABLE)
+ if(${have})
+ add_definitions(${flag})
+ endif(${have})
+endmacro(GR_ADD_CXX_COMPILER_FLAG_IF_AVAILABLE)
+
+########################################################################
+# Do standard things to the library target
+# - set target properties
+# - make install rules
+# Also handle gnuradio custom naming conventions w/ fubar mode.
+########################################################################
+function(GR_LIBRARY_FOO target)
+ #parse the arguments for component names
+ include(CMakeParseArgumentsCopy)
+ CMAKE_PARSE_ARGUMENTS(GR_LIBRARY "" "RUNTIME_COMPONENT;DEVEL_COMPONENT" "" ${ARGN})
+
+ #set additional target properties
+ set_target_properties(${target} PROPERTIES SOVERSION ${LIBVER})
+
+ #install the generated files like so...
+ install(TARGETS ${target}
+ LIBRARY DESTINATION ${GR_LIBRARY_DIR} COMPONENT ${GR_LIBRARY_RUNTIME_COMPONENT} # .so/.dylib file
+ ARCHIVE DESTINATION ${GR_LIBRARY_DIR} COMPONENT ${GR_LIBRARY_DEVEL_COMPONENT} # .lib file
+ RUNTIME DESTINATION ${GR_RUNTIME_DIR} COMPONENT ${GR_LIBRARY_RUNTIME_COMPONENT} # .dll file
+ )
+
+ #fubar mode enabled automatically on linux
+ if(NOT DEFINED LIBRARY_FUBAR)
+ set(LIBRARY_FUBAR ${LINUX})
+ endif()
+
+ #special fubar mode to enable alternative naming conventions
+ if(LIBRARY_FUBAR)
+
+ #create .la file before changing props
+ include(CMakeMacroLibtoolFile)
+ CREATE_LIBTOOL_FILE(${target} /${GR_LIBRARY_DIR})
+
+ #give the library a special name with ultra-zero soverion
+ set_target_properties(${target} PROPERTIES LIBRARY_OUTPUT_NAME ${target}-${LIBVER} SOVERSION "0.0.0")
+ set(target_name lib${target}-${LIBVER}.so.0.0.0)
+
+ #custom command to generate symlinks
+ add_custom_command(
+ TARGET ${target}
+ POST_BUILD
+ COMMAND ${CMAKE_COMMAND} -E create_symlink ${target_name} ${CMAKE_CURRENT_BINARY_DIR}/lib${target}.so
+ COMMAND ${CMAKE_COMMAND} -E create_symlink ${target_name} ${CMAKE_CURRENT_BINARY_DIR}/lib${target}-${LIBVER}.so.0
+ )
+
+ #and install the extra symlinks
+ install(
+ FILES
+ ${CMAKE_CURRENT_BINARY_DIR}/lib${target}.so
+ ${CMAKE_CURRENT_BINARY_DIR}/lib${target}-${LIBVER}.so.0
+ DESTINATION ${GR_LIBRARY_DIR} COMPONENT ${GR_LIBRARY_RUNTIME_COMPONENT}
+ )
+
+ endif(LIBRARY_FUBAR)
+endfunction(GR_LIBRARY_FOO)