mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-15 20:38:23 +01:00
8 lines
230 B
CMake
8 lines
230 B
CMake
configure_file(poet.h.in poet.h)
|
|
|
|
add_executable(poet poet.cpp)
|
|
target_include_directories(poet PUBLIC "${CMAKE_CURRENT_BINARY_DIR}")
|
|
target_link_libraries(poet PUBLIC poet_lib MPI::MPI_CXX)
|
|
|
|
install(TARGETS poet DESTINATION bin)
|