Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
libcifpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
libcifpp
Commits
908fb1cc
Unverified
Commit
908fb1cc
authored
Oct 20, 2022
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gxrio dependency
parent
af8389ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
CMakeLists.txt
+10
-1
cmake/cifppConfig.cmake.in
+0
-1
No files found.
CMakeLists.txt
View file @
908fb1cc
...
@@ -145,6 +145,8 @@ set(THREADS_PREFER_PTHREAD_FLAG)
...
@@ -145,6 +145,8 @@ set(THREADS_PREFER_PTHREAD_FLAG)
find_package
(
Threads
)
find_package
(
Threads
)
add_git_submodule
(
gxrio EXCLUDE_FROM_ALL
)
add_git_submodule
(
gxrio EXCLUDE_FROM_ALL
)
find_package
(
ZLIB REQUIRED
)
find_package
(
LibLZMA REQUIRED
)
include
(
FindFilesystem
)
include
(
FindFilesystem
)
list
(
APPEND CIFPP_REQUIRED_LIBRARIES
${
STDCPPFS_LIBRARY
}
)
list
(
APPEND CIFPP_REQUIRED_LIBRARIES
${
STDCPPFS_LIBRARY
}
)
...
@@ -242,7 +244,14 @@ target_include_directories(cifpp
...
@@ -242,7 +244,14 @@ target_include_directories(cifpp
"$<INSTALL_INTERFACE:
${
CMAKE_INSTALL_INCLUDEDIR
}
>"
"$<INSTALL_INTERFACE:
${
CMAKE_INSTALL_INCLUDEDIR
}
>"
)
)
target_link_libraries
(
cifpp PUBLIC Threads::Threads gxrio::gxrio
${
CIFPP_REQUIRED_LIBRARIES
}
)
target_link_libraries
(
cifpp PUBLIC
Threads::Threads
ZLIB::ZLIB
LibLZMA::LibLZMA
${
CIFPP_REQUIRED_LIBRARIES
}
)
get_target_property
(
GXRIO_INCLUDE_DIR gxrio::gxrio INTERFACE_INCLUDE_DIRECTORIES
)
target_include_directories
(
cifpp PRIVATE
${
GXRIO_INCLUDE_DIR
}
)
if
(
BOOST_REGEX_STANDALONE
)
if
(
BOOST_REGEX_STANDALONE
)
target_include_directories
(
cifpp PRIVATE regex/include
)
target_include_directories
(
cifpp PRIVATE regex/include
)
...
...
cmake/cifppConfig.cmake.in
View file @
908fb1cc
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
include(CMakeFindDependencyMacro)
include(CMakeFindDependencyMacro)
find_dependency(Threads)
find_dependency(Threads)
# These are for gxrio
find_dependency(ZLIB REQUIRED)
find_dependency(ZLIB REQUIRED)
find_dependency(LibLZMA REQUIRED)
find_dependency(LibLZMA REQUIRED)
...
...
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