Commit d73bfcfa authored by Dominik Charousset's avatar Dominik Charousset

Use GLOB_RECURSE for finding headers

parent 790baa8b
...@@ -7,12 +7,7 @@ include_directories(.) ...@@ -7,12 +7,7 @@ include_directories(.)
# get header files; only needed by CMake generators, # get header files; only needed by CMake generators,
# e.g., for creating proper Xcode projects # e.g., for creating proper Xcode projects
file(GLOB LIBCAF_CORE_HDRS "caf/*.hpp" file(GLOB_RECURSE LIBCAF_CORE_HDRS "caf/*.hpp")
"caf/detail/*.hpp"
"caf/policy/*.hpp"
"caf/mixin/*.hpp"
"caf/scheduler/*.hpp"
"cppa/*.hpp")
# list cpp files excluding platform-dependent files # list cpp files excluding platform-dependent files
set (LIBCAF_CORE_SRCS set (LIBCAF_CORE_SRCS
......
...@@ -3,7 +3,7 @@ project(caf_io C CXX) ...@@ -3,7 +3,7 @@ project(caf_io C CXX)
# get header files; only needed by CMake generators, # get header files; only needed by CMake generators,
# e.g., for creating proper Xcode projects # e.g., for creating proper Xcode projects
file(GLOB LIBCAF_IO_HDRS "caf/io/*.hpp" "caf/io/network/*.hpp") file(GLOB_RECURSE LIBCAF_IO_HDRS "caf/*.hpp")
# list cpp files excluding platform-dependent files # list cpp files excluding platform-dependent files
set (LIBCAF_IO_SRCS set (LIBCAF_IO_SRCS
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment