Skip to content
Snippets Groups Projects
Commit 9e308c43 authored by Christoph Rettinger's avatar Christoph Rettinger
Browse files

Fixed ordering of cmake commands

parent fd01f6c9
No related branches found
No related tags found
No related merge requests found
...@@ -1256,6 +1256,8 @@ include_directories ( ${CMAKE_CURRENT_BINARY_DIR}/src ) ...@@ -1256,6 +1256,8 @@ include_directories ( ${CMAKE_CURRENT_BINARY_DIR}/src )
# All include paths are specified relative to src/ directory # All include paths are specified relative to src/ directory
include_directories ( ${CMAKE_CURRENT_SOURCE_DIR}/src ) include_directories ( ${CMAKE_CURRENT_SOURCE_DIR}/src )
# sources
add_subdirectory ( src )
# Generate file with compile options, and add install rule for it # Generate file with compile options, and add install rule for it
configure_file ( src/waLBerlaDefinitions.in.h configure_file ( src/waLBerlaDefinitions.in.h
...@@ -1263,8 +1265,6 @@ configure_file ( src/waLBerlaDefinitions.in.h ...@@ -1263,8 +1265,6 @@ configure_file ( src/waLBerlaDefinitions.in.h
install( FILES ${walberla_BINARY_DIR}/src/waLBerlaDefinitions.h DESTINATION walberla/ ) install( FILES ${walberla_BINARY_DIR}/src/waLBerlaDefinitions.h DESTINATION walberla/ )
# sources
add_subdirectory ( src )
# test # test
if ( WALBERLA_BUILD_TESTS ) if ( WALBERLA_BUILD_TESTS )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment