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
1063dfb1
Commit
1063dfb1
authored
1 year ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
CMake rm option BATCH_MODE
parent
01043ed4
No related branches found
No related tags found
1 merge request
!2502
rm Pyenv from CI-script (partly reverting previous MR) because of versiondocs
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
CMakeLists.txt
+0
-4
0 additions, 4 deletions
CMakeLists.txt
Sim/CMakeLists.txt
+0
-3
0 additions, 3 deletions
Sim/CMakeLists.txt
with
1 addition
and
8 deletions
.gitlab-ci.yml
+
1
−
1
View file @
1063dfb1
...
@@ -41,7 +41,7 @@ versiondocs:
...
@@ -41,7 +41,7 @@ versiondocs:
-
hugo version
-
hugo version
-
mkdir build
-
mkdir build
-
cd build
-
cd build
-
time cmake .. -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DBA
TCH_MODE=ON
-
time cmake .. -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DBA
_GUI=OFF
-
time make -j8
-
time make -j8
-
time make -j8 webdoc
-
time make -j8 webdoc
-
rm -rf ~www/ba/git-main/hugo-public
-
rm -rf ~www/ba/git-main/hugo-public
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
0
−
4
View file @
1063dfb1
...
@@ -48,7 +48,6 @@ option(DEV "Development: turns ALLCONFIG, ZERO_TOLERANCE, DEVELOPER_CHECKS on" O
...
@@ -48,7 +48,6 @@ option(DEV "Development: turns ALLCONFIG, ZERO_TOLERANCE, DEVELOPER_CHECKS on" O
option
(
BA_COVERAGE
"Build with test coverage information"
OFF
)
option
(
BA_COVERAGE
"Build with test coverage information"
OFF
)
option
(
BA_DEBUG_OPTIMIZATION
"Build with debug optimization (gcc only)"
OFF
)
option
(
BA_DEBUG_OPTIMIZATION
"Build with debug optimization (gcc only)"
OFF
)
option
(
BA_TIDY
"Invokes clang-tidy"
OFF
)
option
(
BA_TIDY
"Invokes clang-tidy"
OFF
)
option
(
BATCH_MODE
"Suppress some output"
OFF
)
option
(
ALGORITHM_DIAGNOSTIC
"Let some algorithms set diagnostic variables"
OFF
)
option
(
ALGORITHM_DIAGNOSTIC
"Let some algorithms set diagnostic variables"
OFF
)
option
(
BA_APPLE_BUNDLE
"Create a MacOS bundle"
OFF
)
option
(
BA_APPLE_BUNDLE
"Create a MacOS bundle"
OFF
)
option
(
BA_CPP_API
"Install header files"
OFF
)
option
(
BA_CPP_API
"Install header files"
OFF
)
...
@@ -70,9 +69,6 @@ if(ALLCONFIG)
...
@@ -70,9 +69,6 @@ if(ALLCONFIG)
set
(
CONFIGURE_EXAMPLES ON
)
set
(
CONFIGURE_EXAMPLES ON
)
set
(
CONFIGURE_DOXY ON
)
set
(
CONFIGURE_DOXY ON
)
endif
()
endif
()
if
(
BATCH_MODE
)
set
(
BA_GUI OFF
)
endif
()
# check compatibility of options
# check compatibility of options
...
...
This diff is collapsed.
Click to expand it.
Sim/CMakeLists.txt
+
0
−
3
View file @
1063dfb1
...
@@ -13,9 +13,6 @@ file(GLOB include_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} */*.h)
...
@@ -13,9 +13,6 @@ file(GLOB include_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} */*.h)
# --- make the library ---
# --- make the library ---
add_library
(
${
lib
}
SHARED
)
add_library
(
${
lib
}
SHARED
)
if
(
BATCH_MODE
)
target_compile_definitions
(
${
lib
}
PRIVATE SILENT_PROGRESS=ON
)
endif
()
MakeLib
(
${
lib
}
"
${
CMAKE_CURRENT_BINARY_DIR
}
/Wrap"
"
${
source_files
}
"
"
${
include_files
}
"
)
MakeLib
(
${
lib
}
"
${
CMAKE_CURRENT_BINARY_DIR
}
/Wrap"
"
${
source_files
}
"
"
${
include_files
}
"
)
# --- external dependences ---
# --- external dependences ---
...
...
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