Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler committed Oct 9, 2024
1 parent 6726bbe commit 11ca4c6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions build_system/seqan3-install.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,7 @@ install (FILES "${SEQAN3_CLONE_DIR}/build_system/seqan3-config.cmake"
# install seqan3 header files in /include/seqan3
install (DIRECTORY "${SEQAN3_INCLUDE_DIR}/seqan3" TYPE INCLUDE)

install (DIRECTORY "${sdsl-lite_SOURCE_DIR}/include/sdsl" DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/seqan3/vendor/sdsl")
install (DIRECTORY "${cereal_SOURCE_DIR}/include/cereal" DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/seqan3/vendor/cereal")
install (DIRECTORY "${SEQAN3_SDSL_INCLUDE_DIR}/include/sdsl"
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/seqan3/vendor/sdsl")
install (DIRECTORY "${SEQAN3_CEREAL_INCLUDE_DIR}/include/cereal"
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/seqan3/vendor/cereal")
8 changes: 4 additions & 4 deletions test/seqan3-test.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ if (NOT TARGET seqan3::test)
if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 12)
target_compile_options (seqan3_test INTERFACE "-Wno-interference-size")
endif ()
endif ()

# Warn about failed return value optimization.
if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 14)
target_compile_options (seqan3_test INTERFACE "-Wnrvo")
# Warn about failed return value optimization.
if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 14)
target_compile_options (seqan3_test INTERFACE "-Wnrvo")
endif ()
endif ()

# GCC on arm64 (M1): Disable notes about ABI changes. Example:
Expand Down

0 comments on commit 11ca4c6

Please sign in to comment.