]> git.treefish.org Git - phys/latlib.git/blobdiff - CMakeLists.txt
...
[phys/latlib.git] / CMakeLists.txt
index 117984c46918e593a0919ee78da7aa32de508ec2..9c421cef912da45a47cb6a8c6cdf23250c394757 100644 (file)
@@ -1,6 +1,35 @@
 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
+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)
+
+add_executable(hypercache_test hypercache_test.cpp)
+target_link_libraries(hypercache_test lat_hypercache)
\ No newline at end of file