summaryrefslogtreecommitdiffstats
path: root/host/lib/convert
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-09-01 08:51:59 -0700
committerJosh Blum <josh@joshknows.com>2011-09-01 11:59:06 -0700
commit31cdaa9feb4009885d8b4e90d5fddff3565a9257 (patch)
tree2b9453b241bb0afb3a6fd716b83610deb9683727 /host/lib/convert
parent564453747b91c7d479ba8210c4107539b37f5d15 (diff)
downloaduhd-31cdaa9feb4009885d8b4e90d5fddff3565a9257.tar.gz
uhd-31cdaa9feb4009885d8b4e90d5fddff3565a9257.tar.bz2
uhd-31cdaa9feb4009885d8b4e90d5fddff3565a9257.zip
uhd: fill in other fields of pkg-config file
Diffstat (limited to 'host/lib/convert')
-rw-r--r--host/lib/convert/CMakeLists.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/host/lib/convert/CMakeLists.txt b/host/lib/convert/CMakeLists.txt
index c6592a25f..b260cb247 100644
--- a/host/lib/convert/CMakeLists.txt
+++ b/host/lib/convert/CMakeLists.txt
@@ -31,8 +31,9 @@ ENDIF(PKG_CONFIG_FOUND)
FIND_PROGRAM(ORCC_EXECUTABLE orcc)
-IF(ORC_FOUND AND ORCC_EXECUTABLE)
- SET(ORC_SUPPORT_ENABLED TRUE)
+LIBUHD_REGISTER_COMPONENT("ORC" ENABLE_ORC ON "ENABLE_LIBUHD;ORC_FOUND;ORCC_EXECUTABLE" OFF)
+
+IF(ENABLE_ORC)
INCLUDE_DIRECTORIES(${ORC_INCLUDE_DIRS})
LINK_DIRECTORIES(${ORC_LIBRARY_DIRS})
ENABLE_LANGUAGE(C)
@@ -41,7 +42,7 @@ IF(ORC_FOUND AND ORCC_EXECUTABLE)
GET_FILENAME_COMPONENT(orc_file_name_we ${orcc_src} NAME_WE)
SET(orcc_gen ${CMAKE_CURRENT_BINARY_DIR}/${orc_file_name_we}.c)
- MESSAGE(STATUS "Orc found, enabling Orc support")
+ MESSAGE(STATUS "Orc found, enabling Orc support.")
ADD_CUSTOM_COMMAND(
COMMAND ${ORCC_EXECUTABLE} --implementation -o ${orcc_gen} ${orcc_src}
DEPENDS ${orcc_src} OUTPUT ${orcc_gen}
@@ -51,10 +52,9 @@ IF(ORC_FOUND AND ORCC_EXECUTABLE)
${CMAKE_CURRENT_SOURCE_DIR}/convert_with_orc.cpp
)
LIBUHD_APPEND_LIBS(${ORC_LIBRARIES})
-ELSE()
- SET(ORC_SUPPORT_ENABLED FALSE)
- MESSAGE(STATUS "Orc not found, disabling orc support...")
-ENDIF(ORC_FOUND AND ORCC_EXECUTABLE)
+ELSE(ENABLE_ORC)
+ MESSAGE(STATUS "Orc not found, disabling orc support.")
+ENDIF(ENABLE_ORC)
########################################################################
# Check for SSE2 SIMD headers
@@ -91,7 +91,7 @@ IF(CMAKE_COMPILER_IS_GNUCXX)
UNSET(CMAKE_REQUIRED_FLAGS)
ENDIF(CMAKE_COMPILER_IS_GNUCXX)
-IF(HAVE_ARM_NEON_H AND ORC_SUPPORT_ENABLED)
+IF(HAVE_ARM_NEON_H AND ENABLE_ORC)
#prefer orc support, its faster than the current intrinsic implementations
MESSAGE(STATUS "Enabled conversion support with ORC.")
ELSEIF(HAVE_ARM_NEON_H)