diff options
author | Josh Blum <josh@joshknows.com> | 2011-11-05 14:33:39 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-11-07 18:39:06 -0800 |
commit | a2894f6ad7d9cc79a343cc0b06e9fc23994c5c09 (patch) | |
tree | 8cb67cbdedda31bc3d25e2b830c72625d72c1f6e /volk/CMakeLists.txt | |
parent | 3843d13a1e417ddc76b59d165b869c293c94ecfa (diff) |
volk: work to improve compiler and multi-lib support
Diffstat (limited to 'volk/CMakeLists.txt')
-rw-r--r-- | volk/CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/volk/CMakeLists.txt b/volk/CMakeLists.txt index 4b8fda059d..2423fc9227 100644 --- a/volk/CMakeLists.txt +++ b/volk/CMakeLists.txt @@ -32,14 +32,14 @@ set(LIBVER 0.0.0) set(CMAKE_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) #allows this to be a sub-project set(CMAKE_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) #allows this to be a sub-project - +set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) #location for custom "Modules" ######################################################################## # Dependencies setup ######################################################################## -find_package(PythonInterp) -if(NOT PYTHONINTERP_FOUND) - message(FATAL_ERROR "Python interpreter required by the build system.") -endif(NOT PYTHONINTERP_FOUND) +find_package(PythonInterp REQUIRED PYTHON_EXECUTABLE) +find_package(Boost COMPONENTS unit_test_framework) +find_package(ORC) + ######################################################################## # Setup the package config file |