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

* working on cmake config

parent 39822222
Branches
No related merge requests found
file( GLOB datastructures_SOURCES *.hpp *.cpp )
add_library( datastructures ${datastructures_SOURCES} )
\ No newline at end of file
add_library( datastructures ${datastructures_SOURCES} )
file( GLOB simulation_SOURCES *.hpp *.cpp )
include_directories(../datastructures)
add_library( simulation ${simulation_SOURCES} )
\ No newline at end of file
add_library( simulation ${simulation_SOURCES} )
target_link_libraries(simulation datastructures ${MPI_LIBRARIES})
\ No newline at end of file
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