X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/5adde094541b74abf79a902dc4b63141d281b818..2a77bf6d539b1750d194de21ed287a958609693a:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 117984c..761a585 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,40 @@ project(latlib) -add_library(obs obs.cpp) -add_library(configcache configcache.cpp) +#PROFILING +#set(CMAKE_CXX_FLAGS -pg) +#set(CMAKE_EXE_LINKER_FLAGS -pg) +#set(CMAKE_SHARED_LINKER_FLAGS -pg) -target_link_libraries(configcache boost_iostreams) \ No newline at end of file +cmake_minimum_required(VERSION 2.8) + +find_package(Boost 1.49 COMPONENTS iostreams REQUIRED) +include_directories(${Boost_INCLUDE_DIRS}) + +add_library(lat_configcache configcache.cpp) +target_link_libraries(lat_configcache ${Boost_LIBRARIES} lat_writeout) + +add_library(lat_hypercache hypercache.cpp) +target_link_libraries(lat_hypercache lat_configcache lat_writeout) + +add_library(lat_neigh neigh.cpp) + +add_library(lat_writeout writeout.cpp) + +add_library(lat_paraq paraq.cpp) + +add_library(lat_progress progress.cpp) + +find_package(OpenGL) +find_package(GLUT) +if (OPENGL_FOUND AND GLUT_FOUND) + include_directories( ${OPENGL_INCLUDE_DIRS} ${GLUT_INCLUDE_DIRS} ../ ) + add_library(lat_culooks culooks.cpp culooks_cube.cpp culooks_drawing.cpp) + target_link_libraries(lat_culooks ${OPENGL_LIBRARIES} ${GLUT_LIBRARY} pthread) + add_executable(culooks_test culooks_test.cpp) + target_link_libraries(culooks_test lat_culooks) +endif () + +add_executable(neigh_test neigh_test.cpp) +target_link_libraries(neigh_test lat_neigh) + +add_subdirectory(o815)