X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/0c708ebeb7aec487326d89207d96b9e61bd541ad..0e276c2770688b3cc7676ee84c8e35246621f6df:/CMakeLists.txt?ds=sidebyside diff --git a/CMakeLists.txt b/CMakeLists.txt index be72077..0c8d546 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,24 @@ project(latlib) -add_library(configcache configcache.cpp) +add_library(lat_configcache configcache.cpp) +target_link_libraries(lat_configcache boost_iostreams lat_writeout) -target_link_libraries(configcache boost_iostreams) +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_cubelooks cubelooks.cpp) +target_link_libraries(lat_cubelooks ${OPENGL_LIBRARIES} ${GLUT_LIBRARY}) + +add_executable(neigh_test neigh_test.cpp) +target_link_libraries(neigh_test lat_neigh) + +add_executable(cubelooks_test cubelooks_test.cpp) +target_link_libraries(cubelooks_test lat_cubelooks) \ No newline at end of file