Added samples

This commit is contained in:
Guilhem Lavaux 2010-09-12 21:36:37 +02:00
parent 79ac022e34
commit 8b3e4670dd
7 changed files with 170 additions and 1 deletions

11
sample/CMakeLists.txt Normal file
View file

@ -0,0 +1,11 @@
SET(tolink ${CMAKE_BINARY_DIR}/src/libCosmoTool.so ${GSL_LIBRARY} ${GSLCBLAS_LIBRARY})
include_directories(${CMAKE_SOURCE_DIR}/src)
add_executable(testBQueue testBQueue.cpp)
target_link_libraries(testBQueue ${tolink})
add_executable(testInterpolate testInterpolate.cpp)
target_link_libraries(testInterpolate ${tolink})
add_executable(testSmooth testSmooth.cpp)
target_link_libraries(testSmooth ${tolink})