Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Installer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
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
cms-analysis
General
DasAnalysisSystem
Installer
Commits
f8fbd585
Commit
f8fbd585
authored
8 months ago
by
Patrick Louis S Connor
Browse files
Options
Downloads
Patches
Plain Diff
passing over all variables to external prpjects
parent
ed48c655
No related branches found
Branches containing commit
No related tags found
2 merge requests
!34
Migration
,
!30
extend installation instructions to micromamba
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-0
1 addition, 0 deletions
.gitlab-ci.yml
CMakeLists.txt
+10
-0
10 additions, 0 deletions
CMakeLists.txt
with
11 additions
and
0 deletions
.gitlab-ci.yml
+
1
−
0
View file @
f8fbd585
...
...
@@ -23,6 +23,7 @@ micromamba:
script
:
-
sh <(curl -L micro.mamba.pm/install.sh)
-
source ~/.bashrc
-
micromamba --version
-
micromamba create -f prerequisites.yml -n DAS -y
-
micromamba activate DAS
-
./install.sh
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
10
−
0
View file @
f8fbd585
...
...
@@ -15,6 +15,15 @@ set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING
# Import vendored CMake modules
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_SOURCE_DIR
}
/cmake"
)
# taken from https://stackoverflow.com/a/48555098
get_cmake_property
(
vars CACHE_VARIABLES
)
foreach
(
var
${
vars
}
)
get_property
(
currentHelpString CACHE
"
${
var
}
"
PROPERTY HELPSTRING
)
if
(
"
${
currentHelpString
}
"
MATCHES
"No help, variable specified on the command line."
OR
"
${
currentHelpString
}
"
STREQUAL
""
)
list
(
APPEND CL_ARGS
"-D
${
var
}
=
${${
var
}}
"
)
endif
()
endforeach
()
project
(
Installer VERSION 1.0 LANGUAGES C
)
# Need a language for GNUInstallDirs
find_package
(
Git REQUIRED
)
...
...
@@ -96,4 +105,5 @@ ExternalProject_Add(Core
DEPENDS
${
TUNFOLD_DEPENDENCY
}
Darwin
BINARY_DIR
"
${
CMAKE_SOURCE_DIR
}
/Core.build"
INSTALL_DIR
"
${
CMAKE_INSTALL_PREFIX
}
"
CMAKE_ARGS
${
CL_ARGS
}
)
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