X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/9f6e969663a4126813ae8a37d87acdb698ef8e62..fbbe6f07bc8720030541b7319acb02c9233cd622:/CMakeLists.txt?ds=sidebyside diff --git a/CMakeLists.txt b/CMakeLists.txt index 7ef5aae..cc76100 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,27 @@ project(latlib) -add_library(obs obs.cpp) \ No newline at end of file +add_library(lat_configcache configcache.cpp) +target_link_libraries(lat_configcache boost_iostreams 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 REQUIRED) +find_package(GLUT REQUIRED) +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(neigh_test neigh_test.cpp) +target_link_libraries(neigh_test lat_neigh) + +add_executable(culooks_test culooks_test.cpp) +target_link_libraries(culooks_test lat_culooks)