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 6e51886 commit 42ac500Copy full SHA for 42ac500
CMakeLists.txt
@@ -29,3 +29,12 @@ if(BUILD_TESTING AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/test/CMakeLists.txt")
29
add_subdirectory(test)
30
31
endif()
32
+
33
+if(CMAKE_VERSION VERSION_GREATER 3.18 AND CMAKE_GENERATOR MATCHES "Visual Studio")
34
35
+ file(GLOB_RECURSE boost_bloom_IDEFILES CONFIGURE_DEPENDS "include/**/*.hpp")
36
+ source_group(TREE ${PROJECT_SOURCE_DIR}/include FILES ${boost_bloom_IDEFILES} PREFIX "Header Files")
37
+ list(APPEND boost_bloom_IDEFILES extra/boost_bloom.natvis)
38
+ target_sources(boost_bloom PRIVATE ${boost_bloom_IDEFILES})
39
40
+endif()
0 commit comments