X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/2dbd0cb896ebdc75901cbed1b15df238670a0f6d..f6dad6a4230bed002b51de0ec8ff34410bac27ec:/CMakeLists.txt?ds=inline diff --git a/CMakeLists.txt b/CMakeLists.txt index 586117c..0521c1f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,41 @@ project(latlib) -add_library(configcache configcache.cpp) -target_link_libraries(configcache boost_iostreams) +#PROFILING +#set(CMAKE_CXX_FLAGS -pg) +#set(CMAKE_EXE_LINKER_FLAGS -pg) +#set(CMAKE_SHARED_LINKER_FLAGS -pg) -add_library(neigh neigh.cpp) +cmake_minimum_required(VERSION 2.8) -add_library(writeout writeout.cpp) \ No newline at end of file +find_package(Boost 1.49 COMPONENTS filesystem 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) +target_link_libraries(lat_writeout ${Boost_LIBRARIES}) + +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)