Skip to content

Commit 1a26f41

Browse files
authoredJun 3, 2024
Merge pull request #315 from easifem/dev
Updates in easifemBase (May 2024)
2 parents 2d410f2 + c90105f commit 1a26f41

File tree

95 files changed

+8593
-7498
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+8593
-7498
lines changed
 

‎CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ project(${PROJECT_NAME})
2323

2424
enable_language(C Fortran CXX)
2525

26-
set(VERSION_MAJOR "23")
27-
set(VERSION_MINOR "6")
28-
set(VERSION_BugFix "0")
26+
set(VERSION_MAJOR "24")
27+
set(VERSION_MINOR "4")
28+
set(VERSION_BugFix "5")
2929

3030
set(PROJECT_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_BugFix})
3131

‎release_install.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
else:
2020
cmake_def = ""
2121
cmake_def += ' -G "Ninja"' # Unix Makefiles, Ninja, Ninja Multi-Config
22-
cmake_def += " -D USE_OpenMP:BOOL=ON" # OFF
22+
cmake_def += " -D USE_OPENMP:BOOL=ON" # OFF
2323
cmake_def += " -D CMAKE_BUILD_TYPE:STRING=Release"
2424
cmake_def += " -D BUILD_SHARED_LIBS:BOOL=ON"
2525
cmake_def += " -D USE_PLPLOT:BOOL=ON"
@@ -34,8 +34,8 @@
3434
cmake_def += " -D USE_PARPACK:BOOL=OFF"
3535
cmake_def += " -D USE_METIS:BOOL=OFF"
3636
cmake_def += " -D USE_LUA:BOOL=ON"
37-
cmake_def += " -D USE_Int32:BOOL=ON"
38-
cmake_def += " -D USE_Real64:BOOL=ON"
37+
cmake_def += " -D USE_INT32:BOOL=ON"
38+
cmake_def += " -D USE_REAL64:BOOL=ON"
3939
cmake_def += " -D COLOR_DISP:BOOL=OFF"
4040
cmake_def += " -D CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=ON"
4141

0 commit comments

Comments
 (0)
Please sign in to comment.