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 cd40d12 commit 7e04ea5Copy full SHA for 7e04ea5
cmake/O2GetListOfMacros.cmake
@@ -18,7 +18,7 @@ include_guard()
18
function(o2_get_list_of_macros dir varname)
19
file(GLOB_RECURSE listOfMacros RELATIVE ${CMAKE_SOURCE_DIR} ${dir}/*.C)
20
# Case sensitive filtering of .C files (to avoid .c files on Mac)
21
- list(FILTER listOfMacros INCLUDE REGEX "^.*\\.C$")
+ list(FILTER listOfMacros INCLUDE REGEX "^[^.].*\\.C$")
22
# Remove macros that were copied to the build directory, to deal with
23
# the (non-recommended-but-can-happen) case where the build directory
24
# is a subdirectory of the source dir
0 commit comments