Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
maestro-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
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
maestro
maestro-core
Merge requests
!34
Fix a CMake link issue when using shared libs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Fix a CMake link issue when using shared libs
cmake-fix2
into
main
Overview
2
Commits
1
Pipelines
0
Changes
1
Open
Ghost User
requested to merge
cmake-fix2
into
main
3 years ago
Overview
2
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
main
main (HEAD)
and
latest version
latest version
cac25d71
1 commit,
3 years ago
1 file
+
5
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
MaestroConfig.cmake.in
+
5
−
1
Options
@@ -32,4 +32,8 @@
set(PREFIX @prefix@)
set(Maestro_INCLUDE_DIRS ${PREFIX}/include/maestro)
set(Maestro_LIBRARIES ${PREFIX}/lib/libmaestro.a)
if (BUILD_SHARED_LIBRARIES)
set(Maestro_LIBRARIES ${PREFIX}/lib/libmaestro.so)
else()
set(Maestro_LIBRARIES ${PREFIX}/lib/libmaestro.a)
endif()
Loading