Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MLIP
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tadah
MLIP
Commits
8d7f68fc
Commit
8d7f68fc
authored
1 year ago
by
mkirsz
Browse files
Options
Downloads
Patches
Plain Diff
Fixing pipeline
parent
a49e927d
No related branches found
No related tags found
No related merge requests found
Pipeline
#33062
canceled
1 year ago
Stage: build
Stage: build.tests
Stage: run.tests
Stage: trigger
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+26
-0
26 additions, 0 deletions
CMakeLists.txt
with
26 additions
and
0 deletions
CMakeLists.txt
+
26
−
0
View file @
8d7f68fc
...
@@ -28,6 +28,32 @@ set(CMAKE_CXX_STANDARD 17)
...
@@ -28,6 +28,32 @@ set(CMAKE_CXX_STANDARD 17)
set
(
CMAKE_CXX_STANDARD_REQUIRED ON
)
set
(
CMAKE_CXX_STANDARD_REQUIRED ON
)
set
(
CMAKE_CXX_EXTENSIONS OFF
)
set
(
CMAKE_CXX_EXTENSIONS OFF
)
if
(
BUILD_SHARED_LIBS
)
set
(
CMAKE_POSITION_INDEPENDENT_CODE ON
)
endif
()
if
(
BUILD_SHARED_LIBS
)
# Always full RPATH
# use, i.e. don't skip the full RPATH for the build tree
set
(
CMAKE_SKIP_BUILD_RPATH FALSE
)
# when building, don't use the install RPATH already
# (but later on when installing)
set
(
CMAKE_BUILD_WITH_INSTALL_RPATH FALSE
)
set
(
CMAKE_INSTALL_RPATH
"
${
CMAKE_INSTALL_PREFIX
}
/lib"
)
# add the automatically determined parts of the RPATH
# which point to directories outside the build tree to the install RPATH
set
(
CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE
)
# the RPATH to be used when installing, but only if it's not a system directory
list
(
FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES
"
${
CMAKE_INSTALL_PREFIX
}
/lib"
isSystemDir
)
if
(
"
${
isSystemDir
}
"
STREQUAL
"-1"
)
set
(
CMAKE_INSTALL_RPATH
"
${
CMAKE_INSTALL_PREFIX
}
/lib"
)
endif
(
"
${
isSystemDir
}
"
STREQUAL
"-1"
)
endif
()
file
(
GLOB MLIP_SRC CONFIGURE_DEPENDS
"*.cpp"
"*.h"
"*.hpp"
)
file
(
GLOB MLIP_SRC CONFIGURE_DEPENDS
"*.cpp"
"*.h"
"*.hpp"
)
file
(
GLOB_RECURSE ANALYTICS_SRC CONFIGURE_DEPENDS
file
(
GLOB_RECURSE ANALYTICS_SRC CONFIGURE_DEPENDS
"analytics/*.cpp"
"analytics/*.h"
"analytics/*.hpp"
)
"analytics/*.cpp"
"analytics/*.h"
"analytics/*.hpp"
)
...
...
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