Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
biotracker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bioroboticslab
biotracker
biotracker
Commits
379a7c39
Commit
379a7c39
authored
4 years ago
by
calrama
Browse files
Options
Downloads
Patches
Plain Diff
[ci] use static boost
parent
61b9b125
No related branches found
No related tags found
No related merge requests found
Pipeline
#32504
passed
4 years ago
Stage: build
Stage: package
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Src/CMakeLists.txt
+0
-5
0 additions, 5 deletions
Src/CMakeLists.txt
ci/configure.py
+2
-0
2 additions, 0 deletions
ci/configure.py
with
2 additions
and
5 deletions
Src/CMakeLists.txt
+
0
−
5
View file @
379a7c39
...
...
@@ -22,7 +22,6 @@ target_link_libraries (${target} robofish-behavior_loader)
find_package
(
Qt5 REQUIRED COMPONENTS Core Gui Xml Network Widgets Multimedia MultimediaWidgets OpenGL
)
target_link_libraries
(
${
target
}
Qt5::Core Qt5::Gui Qt5::Xml Qt5::Network Qt5::Widgets Qt5::Multimedia Qt5::MultimediaWidgets Qt5::OpenGL
)
set
(
Boost_REALPATH ON
)
find_package
(
Boost REQUIRED COMPONENTS system filesystem program_options
)
target_link_libraries
(
${
target
}
Boost::headers Boost::system Boost::filesystem Boost::program_options
)
...
...
@@ -75,8 +74,6 @@ if("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows")
deploy_qt5
(
${
target
}
DESTINATION .
)
endif
()
locate_boost
(
shared_libraries COMPONENTS system filesystem program_options
)
set
(
INSTALL_CUDA_COMPONENTS
""
CACHE STRING
"CUDA components to install"
)
locate_cuda
(
shared_libraries COMPONENTS
${
INSTALL_CUDA_COMPONENTS
}
)
...
...
@@ -140,8 +137,6 @@ if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
install
(
DIRECTORY
"
${
Pylon5_LIBRARY_DIR
}
/"
DESTINATION
"
${
CMAKE_INSTALL_LIBDIR
}
"
)
endif
()
install
(
FILES
"
${
Boost_SYSTEM_LIBRARY_RELEASE
}
"
"
${
Boost_FILESYSTEM_LIBRARY_RELEASE
}
"
"
${
Boost_PROGRAM_OPTIONS_LIBRARY_RELEASE
}
"
DESTINATION
"
${
CMAKE_INSTALL_LIBDIR
}
"
)
get_target_property
(
shared_library biotracker-interfaces LOCATION
)
install
(
FILES
"
${
shared_library
}
"
DESTINATION
"
${
CMAKE_INSTALL_LIBDIR
}
"
)
...
...
This diff is collapsed.
Click to expand it.
ci/configure.py
+
2
−
0
View file @
379a7c39
...
...
@@ -67,6 +67,8 @@ if __name__ == "__main__":
command
+=
define
(
"
CMAKE_SKIP_PACKAGE_ALL_DEPENDENCY
"
,
"
ON
"
)
command
+=
define_env
(
"
VCPKG_TARGET_TRIPLET
"
)
command
+=
define
(
"
Boost_USE_STATIC_LIBS
"
,
"
ON
"
)
if
system
()
==
"
Windows
"
:
command
+=
define
(
"
PACKAGE_MSI
"
,
"
ON
"
)
command
+=
define
(
"
INSTALL_SYSTEM_LIBRARIES
"
,
"
ON
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment