diff options
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c76176..1cd8a48 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,15 +1,19 @@ # See file "BUILD" for instructions cmake_minimum_required (VERSION 2.6) + project (vecmathlib) add_executable (example example.cc) add_executable (loop loop.cc) +add_executable (interp interp.cc) add_executable (test test.cc) add_executable (bench bench.cc) add_library (instantiations instantiations.cc) +# add_subdirectory (pocl) + # Generic x86-64: @@ -46,7 +50,3 @@ add_library (instantiations instantiations.cc) # # GCC 4.6: # set (CMAKE_CXX_COMPILER "g++") # set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -g -std=c++0x -maltivec -Ofast") - - - -add_subdirectory (pocl) |