Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Service Desk
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
Dmitri Naumov
ogs
Commits
59d000f7
Commit
59d000f7
authored
7 years ago
by
Lars Bilke
Browse files
Options
Downloads
Patches
Plain Diff
[CMake] Search in Conan bin-dirs first for deps.
parent
edf57e96
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scripts/cmake/packaging/InstallDependencies.cmake
+15
-11
15 additions, 11 deletions
scripts/cmake/packaging/InstallDependencies.cmake
scripts/cmake/packaging/PackagingWin.cmake
+1
-0
1 addition, 0 deletions
scripts/cmake/packaging/PackagingWin.cmake
with
16 additions
and
11 deletions
scripts/cmake/packaging/InstallDependencies.cmake
+
15
−
11
View file @
59d000f7
...
@@ -3,26 +3,30 @@ macro(InstallDependencies TARGET)
...
@@ -3,26 +3,30 @@ macro(InstallDependencies TARGET)
get_target_property
(
EXE_DIR
${
TARGET
}
RUNTIME_OUTPUT_DIRECTORY
)
get_target_property
(
EXE_DIR
${
TARGET
}
RUNTIME_OUTPUT_DIRECTORY
)
set
(
TARGET_EXE
${
EXE_DIR
}
/
${
TARGET
}${
CMAKE_EXECUTABLE_SUFFIX
}
)
set
(
TARGET_EXE
${
EXE_DIR
}
/
${
TARGET
}${
CMAKE_EXECUTABLE_SUFFIX
}
)
if
(
EXISTS
${
TARGET_EXE
}
)
# Run CMake again after target was built to collect dependencies
# Run CMake again after target was built to collect dependencies
add_custom_command
(
TARGET
${
TARGET
}
POST_BUILD
add_custom_command
(
TARGET
${
TARGET
}
POST_BUILD
COMMAND
${
CMAKE_COMMAND
}
. -DPRE_INSTALL_RUN=ON
COMMAND
${
CMAKE_COMMAND
}
. -DPRE_INSTALL_RUN=ON
WORKING_DIRECTORY
${
PROJECT_BINARY_DIR
}
WORKING_DIRECTORY
${
PROJECT_BINARY_DIR
}
)
)
if
(
EXISTS
${
TARGET_EXE
}
)
include
(
GetPrerequisites
)
include
(
GetPrerequisites
)
# arg3: exclude system, arg4: recursive
if
(
VTK_BUILD_SHARED_LIBS
)
set
(
dirs
${
CONAN_BIN_DIRS
}
)
if
(
VTK_BUILD_SHARED_LIBS
)
list
(
APPEND dirs
${
vtkIOXML_RUNTIME_LIBRARY_DIRS
}
)
list
(
APPEND dirs
${
vtkIOXML_RUNTIME_LIBRARY_DIRS
}
)
endif
()
endif
()
list
(
APPEND dirs
"/usr/local/lib;
${
CONAN_BIN_DIRS
}
"
)
if
(
NOT WIN32
)
get_prerequisites
(
${
TARGET_EXE
}
TARGET_DEPENDENCIES
${
EXCLUDE_SYSTEM
}
1
""
${
dirs
}
)
list
(
APPEND dirs
"/usr/local/lib"
)
endif
()
get_prerequisites
(
${
TARGET_EXE
}
TARGET_DEPENDENCIES
${
EXCLUDE_SYSTEM
}
1
""
"
${
dirs
}
"
)
if
(
PRE_INSTALL_RUN
)
if
(
PRE_INSTALL_RUN
)
message
(
"-- Dependencies of target
${
TARGET
}
:"
)
message
(
"-- Dependencies of target
${
TARGET
}
:"
)
endif
()
endif
()
foreach
(
DEPENDENCY
${
TARGET_DEPENDENCIES
}
)
foreach
(
DEPENDENCY
${
TARGET_DEPENDENCIES
}
)
if
(
NOT
${
DEPENDENCY
}
MATCHES
"@loader_path"
)
if
(
NOT
${
DEPENDENCY
}
MATCHES
"@loader_path"
)
gp_resolve_item
(
"
${
TARGET_EXE
}
"
"
${
DEPENDENCY
}
"
""
""
DEPENDENCY_PATH
)
gp_resolve_item
(
"
${
TARGET_EXE
}
"
"
${
DEPENDENCY
}
"
""
"
${
dirs
}
"
DEPENDENCY_PATH
)
get_filename_component
(
RESOLVED_DEPENDENCY_PATH
"
${
DEPENDENCY_PATH
}
"
REALPATH
)
get_filename_component
(
RESOLVED_DEPENDENCY_PATH
"
${
DEPENDENCY_PATH
}
"
REALPATH
)
string
(
TOLOWER
${
DEPENDENCY
}
DEPENDENCY_LOWER
)
string
(
TOLOWER
${
DEPENDENCY
}
DEPENDENCY_LOWER
)
set
(
DEPENDENCY_PATHS
${
DEPENDENCY_PATHS
}
${
RESOLVED_DEPENDENCY_PATH
}
)
set
(
DEPENDENCY_PATHS
${
DEPENDENCY_PATHS
}
${
RESOLVED_DEPENDENCY_PATH
}
)
...
...
This diff is collapsed.
Click to expand it.
scripts/cmake/packaging/PackagingWin.cmake
+
1
−
0
View file @
59d000f7
set
(
CMAKE_INSTALL_UCRT_LIBRARIES ON
)
set
(
CMAKE_INSTALL_OPENMP_LIBRARIES ON
)
set
(
CMAKE_INSTALL_OPENMP_LIBRARIES ON
)
include
(
InstallRequiredSystemLibraries
)
include
(
InstallRequiredSystemLibraries
)
set
(
CPACK_GENERATOR ZIP
)
set
(
CPACK_GENERATOR ZIP
)
...
...
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