Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
d73bfcfa
Commit
d73bfcfa
authored
Jun 22, 2015
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use GLOB_RECURSE for finding headers
parent
790baa8b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
libcaf_core/CMakeLists.txt
libcaf_core/CMakeLists.txt
+1
-6
libcaf_io/CMakeLists.txt
libcaf_io/CMakeLists.txt
+1
-1
No files found.
libcaf_core/CMakeLists.txt
View file @
d73bfcfa
...
...
@@ -7,12 +7,7 @@ include_directories(.)
# get header files; only needed by CMake generators,
# e.g., for creating proper Xcode projects
file
(
GLOB LIBCAF_CORE_HDRS
"caf/*.hpp"
"caf/detail/*.hpp"
"caf/policy/*.hpp"
"caf/mixin/*.hpp"
"caf/scheduler/*.hpp"
"cppa/*.hpp"
)
file
(
GLOB_RECURSE LIBCAF_CORE_HDRS
"caf/*.hpp"
)
# list cpp files excluding platform-dependent files
set
(
LIBCAF_CORE_SRCS
...
...
libcaf_io/CMakeLists.txt
View file @
d73bfcfa
...
...
@@ -3,7 +3,7 @@ project(caf_io C CXX)
# get header files; only needed by CMake generators,
# 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
set
(
LIBCAF_IO_SRCS
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment