Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pistache
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
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
Libraries
pistache
Commits
ef1474e0
Commit
ef1474e0
authored
Mar 23, 2017
by
Martchus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Export targets
parent
9827cda4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletion
+24
-1
CMakeLists.txt
CMakeLists.txt
+1
-1
src/CMakeLists.txt
src/CMakeLists.txt
+20
-0
src/PistacheConfig.cmake.in
src/PistacheConfig.cmake.in
+3
-0
No files found.
CMakeLists.txt
View file @
ef1474e0
cmake_minimum_required
(
VERSION
2.8.7
)
cmake_minimum_required
(
VERSION
3.0.2
)
project
(
pistache
)
project
(
pistache
)
include
(
CheckCXXCompilerFlag
)
include
(
CheckCXXCompilerFlag
)
...
...
src/CMakeLists.txt
View file @
ef1474e0
...
@@ -40,3 +40,23 @@ install(
...
@@ -40,3 +40,23 @@ install(
DIRECTORY
"
${
PROJECT_SOURCE_DIR
}
/include/pistache"
DIRECTORY
"
${
PROJECT_SOURCE_DIR
}
/include/pistache"
DESTINATION
${
include_install_dir
}
DESTINATION
${
include_install_dir
}
FILES_MATCHING PATTERN
"*.*h"
)
FILES_MATCHING PATTERN
"*.*h"
)
install
(
TARGETS pistache
EXPORT PistacheTargets
DESTINATION lib
)
install
(
EXPORT PistacheTargets
DESTINATION
"lib/cmake/pistache"
EXPORT_LINK_INTERFACE_LIBRARIES
COMPONENT cmake-config
)
include
(
CMakePackageConfigHelpers
)
configure_package_config_file
(
"PistacheConfig.cmake.in"
"
${
CMAKE_CURRENT_BINARY_DIR
}
/PistacheConfig.cmake"
INSTALL_DESTINATION
"lib/cmake/pistache"
)
install
(
FILES
"
${
CMAKE_CURRENT_BINARY_DIR
}
/PistacheConfig.cmake"
DESTINATION
"lib/cmake/pistache"
COMPONENT cmake-config
)
src/PistacheConfig.cmake.in
0 → 100644
View file @
ef1474e0
@PACKAGE_INIT@
include("${CMAKE_CURRENT_LIST_DIR}/PistacheTargets.cmake")
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