diff options
author | Erik Schnetter <schnetter@gmail.com> | 2013-07-28 08:58:12 -0700 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2013-07-28 08:58:12 -0700 |
commit | 3a87fd635fa0336e4c28cde9f893c359ffd061f7 (patch) | |
tree | 46a54fcd2fbdb687189209ea35161bb5321f381f | |
parent | 95868fa4570b51c835728c247f2dcfebb6644a91 (diff) | |
parent | c5b83027f2be242113355fb684696a8d673453f9 (diff) | |
download | vecmathlib-3a87fd635fa0336e4c28cde9f893c359ffd061f7.zip vecmathlib-3a87fd635fa0336e4c28cde9f893c359ffd061f7.tar.gz |
Merge branch 'master' of bitbucket.org:eschnett/vecmathlib
-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) |