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
Commits
c1a77f14
Commit
c1a77f14
authored
11 years ago
by
Pospelov, Gennady
Browse files
Options
Downloads
Patches
Plain Diff
Different location of installed libraries for Windows and Linux
parent
0d1c6be6
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Core/CMakeLists.txt
+8
-3
8 additions, 3 deletions
Core/CMakeLists.txt
Fit/CMakeLists.txt
+7
-3
7 additions, 3 deletions
Fit/CMakeLists.txt
README
+1
-0
1 addition, 0 deletions
README
ThirdParty/RootMinimizers/CMakeLists.txt
+1
-1
1 addition, 1 deletion
ThirdParty/RootMinimizers/CMakeLists.txt
with
17 additions
and
7 deletions
Core/CMakeLists.txt
+
8
−
3
View file @
c1a77f14
...
...
@@ -88,14 +88,19 @@ endif()
# -----------------------------------------------
# installation
# FIXME installation goes in two place (lib, bin), this is temporary
# -----------------------------------------------
install
(
DIRECTORY
${
CMAKE_SOURCE_DIR
}
/Examples/ DESTINATION Examples COMPONENT Examples FILES_MATCHING PATTERN
"*.py"
)
install
(
DIRECTORY
${
CMAKE_SOURCE_DIR
}
/Examples/ DESTINATION Examples COMPONENT Examples FILES_MATCHING PATTERN
"README"
)
install
(
DIRECTORY
${
CMAKE_SOURCE_DIR
}
/bin/ DESTINATION bin COMPONENT Libraries
)
#install (TARGETS ${library_name} DESTINATION lib COMPONENT Libraries)
install
(
TARGETS
${
library_name
}
DESTINATION bin COMPONENT Libraries
)
if
(
WIN32
)
set
(
libdir
"bin"
)
else
()
set
(
libdir
"lib"
)
endif
()
install
(
TARGETS
${
library_name
}
DESTINATION
${
libdir
}
COMPONENT Libraries
)
# windows requires to rename *.dll into *.pyd to use them from python
if
(
WIN32 AND BORNAGAIN_PYTHON
)
install
(
FILES
${
CMAKE_BINARY_DIR
}
/lib/
${
libprefix
}${
library_name
}
.pyd
...
...
This diff is collapsed.
Click to expand it.
Fit/CMakeLists.txt
+
7
−
3
View file @
c1a77f14
...
...
@@ -74,11 +74,15 @@ endif()
# -----------------------------------------------
# installation
# FIXME installation goes in two place (lib, bin), this is temporary
# -----------------------------------------------
#install (TARGETS ${library_name} DESTINATION lib COMPONENT Libraries)
install
(
TARGETS
${
library_name
}
DESTINATION bin COMPONENT Libraries
)
if
(
WIN32
)
set
(
libdir
"bin"
)
else
()
set
(
libdir
"lib"
)
endif
()
install
(
TARGETS
${
library_name
}
DESTINATION
${
libdir
}
COMPONENT Libraries
)
# windows requires to rename *.dll into *.pyd to use them from python
if
(
WIN32 AND BORNAGAIN_PYTHON
)
install
(
FILES
${
CMAKE_BINARY_DIR
}
/lib/
${
libprefix
}${
library_name
}
.pyd DESTINATION lib COMPONENT Libraries
)
install
(
FILES
${
CMAKE_BINARY_DIR
}
/lib/
${
libprefix
}${
library_name
}
.pyd DESTINATION bin COMPONENT Libraries
)
...
...
This diff is collapsed.
Click to expand it.
README
+
1
−
0
View file @
c1a77f14
...
...
@@ -8,3 +8,4 @@ changelog : see Doc/CHANGELOG
This diff is collapsed.
Click to expand it.
ThirdParty/RootMinimizers/CMakeLists.txt
+
1
−
1
View file @
c1a77f14
...
...
@@ -42,4 +42,4 @@ include_directories(${GSL_INCLUDE_DIRS})
target_link_libraries
(
${
library_name
}
${
GSL_LIBRARIES
}
)
# --- installation ---
install
(
TARGETS
${
library_name
}
DESTINATION lib COMPONENT Libraries
)
#
install (TARGETS ${library_name} DESTINATION lib COMPONENT Libraries)
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