Skip to content
Snippets Groups Projects
Commit d4ccac39 authored by Paul Heinzlreiter's avatar Paul Heinzlreiter
Browse files

* adding pthread main proram to cmake config

parent 4d07fc68
Branches
No related merge requests found
......@@ -12,6 +12,10 @@ add_subdirectory(simulation)
add_executable(bh_tree_mpi mpimain.cpp)
target_link_libraries(bh_tree_mpi datastructures simulation ${MPI_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
add_executable(bh_tree_pthread pthreadmain.cpp)
target_link_libraries(bh_tree_pthread datastructures simulation ${CMAKE_THREAD_LIBS_INIT})
if(MPI_COMPILE_FLAGS)
set_target_properties(bh_tree_mpi PROPERTIES
COMPILE_FLAGS "${MPI_COMPILE_FLAGS}")
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment