We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab3d986 commit b03ba5eCopy full SHA for b03ba5e
CMakeLists.txt
@@ -44,6 +44,10 @@ if (DYNAMIC_BITSET_MRDOCS_BUILD)
44
# Create a custom target for MrDocs.
45
add_library(dynamic_bitset_mrdocs_target ${TEMP_CPP_FILE})
46
47
+ # This is to get some noexcept specifications which are only added
48
+ # if the code is compiled as C++17 or later.
49
+ set_target_properties(dynamic_bitset_mrdocs_target PROPERTIES CXX_STANDARD 17 CXX_STANDARD_REQUIRED YES)
50
+
51
# Set any other target properties here.
52
target_include_directories(dynamic_bitset_mrdocs_target PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
53
target_link_libraries(dynamic_bitset_mrdocs_target PRIVATE boost_dynamic_bitset)
0 commit comments