X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/0e276c2770688b3cc7676ee84c8e35246621f6df..a1ba813d03f4fb8a40adae184fc4ab4f0271d55a:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 0c8d546..9c421ce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,16 @@ project(latlib) +#PROFILING +#set(CMAKE_CXX_FLAGS -pg) +#set(CMAKE_EXE_LINKER_FLAGS -pg) +#set(CMAKE_SHARED_LINKER_FLAGS -pg) + 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) @@ -14,11 +22,14 @@ 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_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(cubelooks_test cubelooks_test.cpp) -target_link_libraries(cubelooks_test lat_cubelooks) \ No newline at end of file +add_executable(culooks_test culooks_test.cpp) +target_link_libraries(culooks_test lat_culooks) + +add_executable(hypercache_test hypercache_test.cpp) +target_link_libraries(hypercache_test lat_hypercache) \ No newline at end of file