Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Merge requests
!2528
rm unnecessary trailing slashes from CMake variables (
#946
)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
rm unnecessary trailing slashes from CMake variables (
#946
)
j.4
into
main
Overview
0
Commits
5
Pipelines
3
Changes
1
Merged
Wuttke, Joachim
requested to merge
j.4
into
main
10 months ago
Overview
0
Commits
5
Pipelines
3
Changes
1
Expand
This resolves
#946 (closed)
.
0
0
Merge request reports
Viewing commit
76b9b66e
Show latest version
1 file
+
6
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
76b9b66e
CMake rm trailing slashes from destination variables
· 76b9b66e
Wuttke, Joachim
authored
10 months ago
cmake/BornAgain/Directories.cmake
+
6
−
6
Options
@@ -94,16 +94,16 @@ if(BA_APPLE_BUNDLE)
list
(
APPEND dstIds
"bundle"
)
endif
()
set
(
destination_bin
${
destination_root
}
bin
/
)
set
(
destination_lib
${
destination_root
}
lib
/
)
set
(
destination_bin
${
destination_root
}
bin
)
set
(
destination_lib
${
destination_root
}
lib
)
if
(
WIN32
)
# on Window, the libraries must be in the same folder as the executable
set
(
destination_lib
${
destination_bin
}
)
endif
()
set
(
destination_include
${
destination_root
}
include/
${
destination_suffix
}
/
)
set
(
destination_share
${
destination_root
}
share/
${
destination_suffix
}
/
)
set
(
destination_examples
${
destination_share
}
Examples
/
)
set
(
destination_images
${
destination_share
}
Images
/
)
set
(
destination_include
${
destination_root
}
include/
${
destination_suffix
}
)
set
(
destination_share
${
destination_root
}
share/
${
destination_suffix
}
)
set
(
destination_examples
${
destination_share
}
/
Examples
)
set
(
destination_images
${
destination_share
}
/
Images
)
set
(
destination_man
${
destination_root
}
share/man/man1
)
list
(
APPEND dstIds bin lib include share examples images man
)
Loading