Skip to content
Snippets Groups Projects
Commit 8e421340 authored by Frederik Hennig's avatar Frederik Hennig
Browse files

fix cmakelists

parent a75c34aa
No related merge requests found
......@@ -2,4 +2,16 @@
SET ( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake )
find_package( PystencilsSfg REQUIRED )
add_subdirectory( include )
add_library( sfg_walberla INTERFACE )
target_sources( sfg_walberla
INTERFACE include/GenericHbbBoundary.hpp
)
target_include_directories( sfg_walberla INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include )
target_link_libraries(
sfg_walberla
INTERFACE
core stencil domain_decomposition blockforest field
)
add_library( sfg_walberla INTERFACE )
target_sources( sfg_walberla
INTERFACE GenericHbbBoundary.hpp
)
target_include_directories( sfg_walberla INTERFACE ${CMAKE_CURRENT_SOURCE_DIR} )
target_link_libraries(
sfg_walberla
INTERFACE
core stencil domain_decomposition blockforest field
)
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