summaryrefslogtreecommitdiff
path: root/cmake/Modules/GrMiscUtils.cmake
diff options
context:
space:
mode:
authorTom Rondeau2011-10-24 23:25:50 -0400
committerTom Rondeau2011-10-24 23:25:50 -0400
commit603658b3dff46534bba718646c0cf8263747326d (patch)
tree7005e4889c9dcf1ee3b2cebfbb39c17591e3c538 /cmake/Modules/GrMiscUtils.cmake
parent5f94e800d5b83fdbc60cdf1da6e633db6aa49e63 (diff)
downloadgnuradio-603658b3dff46534bba718646c0cf8263747326d.tar.gz
gnuradio-603658b3dff46534bba718646c0cf8263747326d.tar.bz2
gnuradio-603658b3dff46534bba718646c0cf8263747326d.zip
build: name change because we're not 12 year olds.
Diffstat (limited to 'cmake/Modules/GrMiscUtils.cmake')
-rw-r--r--cmake/Modules/GrMiscUtils.cmake16
1 files changed, 8 insertions, 8 deletions
diff --git a/cmake/Modules/GrMiscUtils.cmake b/cmake/Modules/GrMiscUtils.cmake
index 90b75f4ef..9d947e9a5 100644
--- a/cmake/Modules/GrMiscUtils.cmake
+++ b/cmake/Modules/GrMiscUtils.cmake
@@ -102,7 +102,7 @@ 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.
+# Also handle gnuradio custom naming conventions w/ extras mode.
########################################################################
function(GR_LIBRARY_FOO target)
#parse the arguments for component names
@@ -119,19 +119,19 @@ function(GR_LIBRARY_FOO target)
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})
+ #extras mode enabled automatically on linux
+ if(NOT DEFINED LIBRARY_EXTRAS)
+ set(LIBRARY_EXTRAS ${LINUX})
endif()
- #special fubar mode to enable alternative naming conventions
- if(LIBRARY_FUBAR)
+ #special extras mode to enable alternative naming conventions
+ if(LIBRARY_EXTRAS)
#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
+ #give the library a special name with ultra-zero soversion
set_target_properties(${target} PROPERTIES LIBRARY_OUTPUT_NAME ${target}-${LIBVER} SOVERSION "0.0.0")
set(target_name lib${target}-${LIBVER}.so.0.0.0)
@@ -151,5 +151,5 @@ function(GR_LIBRARY_FOO target)
DESTINATION ${GR_LIBRARY_DIR} COMPONENT ${GR_LIBRARY_RUNTIME_COMPONENT}
)
- endif(LIBRARY_FUBAR)
+ endif(LIBRARY_EXTRAS)
endfunction(GR_LIBRARY_FOO)