Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
yaml-cpp
Commits
41a7f7a0
Commit
41a7f7a0
authored
Jan 21, 2012
by
beder
Browse files
Moved including boost headers to after the project's headers
parent
8d658bbf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
CMakeLists.txt
CMakeLists.txt
+4
-4
No files found.
CMakeLists.txt
View file @
41a7f7a0
...
...
@@ -60,9 +60,6 @@ file(GLOB sources "src/[a-zA-Z]*.cpp")
file
(
GLOB_RECURSE public_headers
"include/yaml-cpp/[a-zA-Z]*.h"
)
file
(
GLOB private_headers
"src/[a-zA-Z]*.h"
)
find_package
(
Boost REQUIRED
)
include_directories
(
${
Boost_INCLUDE_DIRS
}
)
if
(
YAML_CPP_BUILD_CONTRIB
)
file
(
GLOB contrib_sources
"src/contrib/[a-zA-Z]*.cpp"
)
file
(
GLOB contrib_public_headers
"include/yaml-cpp/contrib/[a-zA-Z]*.h"
)
...
...
@@ -80,8 +77,11 @@ if(VERBOSE)
message
(
STATUS
"contrib_private_headers:
${
contrib_private_headers
}
"
)
endif
()
include_directories
(
${
YAML_CPP_SOURCE_DIR
}
/include
)
include_directories
(
${
YAML_CPP_SOURCE_DIR
}
/src
)
include_directories
(
${
YAML_CPP_SOURCE_DIR
}
/include
)
find_package
(
Boost REQUIRED
)
include_directories
(
${
Boost_INCLUDE_DIRS
}
)
###
...
...
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