forked from modelica/ModelicaStandardLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
260 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,239 +1,25 @@ | ||
cmake_minimum_required(VERSION 3.15) | ||
|
||
# Set MSVC runtime library type | ||
if (POLICY CMP0091) | ||
cmake_policy(SET CMP0091 NEW) | ||
if (WIN32 AND CMAKE_GENERATOR MATCHES "Visual Studio .*|NMake.*") | ||
message(STATUS "Configuring to link the MSVC runtime library statically") | ||
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>") | ||
endif() | ||
if(POLICY CMP0091) | ||
cmake_policy(SET CMP0091 NEW) | ||
if(WIN32 AND CMAKE_GENERATOR MATCHES "Visual Studio .*|NMake.*") | ||
message(STATUS "Configuring to link the MSVC runtime library statically") | ||
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>") | ||
endif() | ||
endif() | ||
|
||
project(Modelica_Standard_Library_Tables C) | ||
|
||
option(MODELICA_DEBUG_TIME_EVENTS "Trace time events of CombiTimeTable" OFF) | ||
option(MODELICA_SHARE_TABLE_DATA "Store shared table arrays (read from file) in a global hash table" ON) | ||
option(MODELICA_COPY_TABLE_DATA "Deep-copy table arrays (passed as array)" ON) | ||
option(MODELICA_DUMMY_FUNCTION_USERTAB "Add a dummy usertab function" OFF) | ||
include(Modelica_platform.cmake) | ||
include(Modelica_utilities.cmake) | ||
|
||
# Check for include attributes, files, functions | ||
include(CheckCSourceCompiles) | ||
include(CheckIncludeFile) | ||
include(CheckSymbolExists) | ||
|
||
check_include_file("locale.h" HAVE_LOCALE_H) | ||
if (NOT HAVE_LOCALE_H) | ||
add_definitions(-DNO_LOCALE) | ||
endif() | ||
check_include_file("pthread.h" HAVE_PTHREAD_H) | ||
if (NOT HAVE_PTHREAD_H AND NOT WIN32) | ||
add_definitions(-DNO_MUTEX) | ||
endif() | ||
check_include_file("stdarg.h" HAVE_STDARG_H) | ||
if (HAVE_STDARG_H) | ||
add_definitions(-DHAVE_STDARG_H) | ||
endif() | ||
check_include_file("dirent.h" HAVE_DIRENT_H) | ||
if (NOT HAVE_DIRENT_H AND NOT WIN32) | ||
add_definitions(-DNO_FILE_SYSTEM) | ||
endif() | ||
check_include_file("time.h" HAVE_TIME_H) | ||
if (NOT HAVE_TIME_H) | ||
add_definitions(-DNO_TIME) | ||
endif() | ||
check_include_file("unistd.h" HAVE_UNISTD_H) | ||
if (HAVE_UNISTD_H) | ||
add_definitions(-DHAVE_UNISTD_H) | ||
check_c_source_compiles( | ||
" | ||
#include <unistd.h> | ||
int main(void) {getpid(); return 0;} | ||
" | ||
HAVE_GETPID | ||
) | ||
if (NOT HAVE_GETPID) | ||
add_definitions(-DNO_PID) | ||
endif() | ||
endif() | ||
check_symbol_exists(memcpy "string.h" HAVE_MEMCPY) | ||
if (HAVE_MEMCPY) | ||
add_definitions(-DHAVE_MEMCPY) | ||
endif() | ||
check_c_source_compiles( | ||
" | ||
#include <stdlib.h> | ||
static void f(void) __attribute__ ((visibility(\"hidden\"))); | ||
int main(void) {return 0;} | ||
" | ||
HAVE_ATTRIBUTE_VISIBILITY_HIDDEN | ||
) | ||
if (HAVE_ATTRIBUTE_VISIBILITY_HIDDEN) | ||
add_definitions(-DHAVE_HIDDEN) | ||
endif() | ||
|
||
# UNIX configurations... | ||
if (UNIX) | ||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3 -Wno-attributes -fno-delete-null-pointer-checks") | ||
elseif (MSVC) | ||
add_definitions(-D_CRT_SECURE_NO_WARNINGS /W3) | ||
endif() | ||
|
||
# Set installation prefix | ||
set(MODELICA_RESOURCES_DIR "${PROJECT_SOURCE_DIR}/../..") | ||
get_filename_component(ABSOLUTE_MODELICA_RESOURCES_DIR "${MODELICA_RESOURCES_DIR}" ABSOLUTE) | ||
set(CMAKE_INSTALL_PREFIX "${ABSOLUTE_MODELICA_RESOURCES_DIR}" CACHE PATH "Library installation prefix path (don't change)" FORCE) | ||
|
||
# Include directories... | ||
include_directories("${ABSOLUTE_MODELICA_RESOURCES_DIR}/C-Sources/zlib") | ||
|
||
# ModelicaUtilities.h include... | ||
if (DEFINED MODELICA_UTILITIES_INCLUDE) | ||
if (NOT MODELICA_UTILITIES_INCLUDE STREQUAL "") | ||
include_directories(${MODELICA_UTILITIES_INCLUDE}) | ||
else() | ||
message(FATAL_ERROR "MODELICA_UTILITIES_INCLUDE is an empty string.") | ||
endif() | ||
else() | ||
set(MODELICA_UTILITIES_INCLUDE "" CACHE PATH "Include directory of the (tool-vendor specific) ModelicaUtilities.h header file") | ||
if (NOT MODELICA_UTILITIES_INCLUDE STREQUAL "") | ||
include_directories(${MODELICA_UTILITIES_INCLUDE}) | ||
else() | ||
message(FATAL_ERROR "MODELICA_UTILITIES_INCLUDE is an empty string.") | ||
endif() | ||
endif() | ||
|
||
# Target architecture configurations... | ||
if (UNIX) | ||
if ((CMAKE_SIZEOF_VOID_P EQUAL 8) AND (NOT M32_FLAG)) | ||
set(TARGET_DIR "linux64") | ||
elseif ((CMAKE_SIZEOF_VOID_P EQUAL 4) OR (M32_FLAG)) | ||
set(TARGET_DIR "linux32") | ||
else() | ||
message(FATAL_ERROR "Shouldn't be possible to get here") | ||
endif() | ||
elseif (MSVC OR MINGW) | ||
if (CMAKE_SIZEOF_VOID_P EQUAL 8) | ||
set(TARGET_DIR "win64") | ||
elseif (CMAKE_SIZEOF_VOID_P EQUAL 4) | ||
set(TARGET_DIR "win32") | ||
else() | ||
message(FATAL_ERROR "Shouldn't be possible to get here") | ||
endif() | ||
else() | ||
message(FATAL_ERROR "Not UNIX (or CYGWIN), not MSVC or MINGW => No Support") | ||
endif() | ||
|
||
if (WIN32 AND CMAKE_GENERATOR MATCHES "Visual Studio 17.*") | ||
set(COMPILER_NAME_DIR "vs2022") | ||
elseif (WIN32 AND CMAKE_GENERATOR MATCHES "Visual Studio 16.*") | ||
set(COMPILER_NAME_DIR "vs2019") | ||
elseif (WIN32 AND CMAKE_GENERATOR MATCHES "Visual Studio 15.*") | ||
set(COMPILER_NAME_DIR "vs2017") | ||
elseif (WIN32 AND CMAKE_GENERATOR MATCHES "Visual Studio 14.*") | ||
set(COMPILER_NAME_DIR "vs2015") | ||
elseif (WIN32 AND CMAKE_GENERATOR MATCHES "Visual Studio 12.*") | ||
set(COMPILER_NAME_DIR "vs2013") | ||
elseif (WIN32 AND CMAKE_GENERATOR MATCHES "Visual Studio 11.*") | ||
set(COMPILER_NAME_DIR "vs2012") | ||
elseif (WIN32 AND CMAKE_GENERATOR MATCHES "Visual Studio 10.*") | ||
set(COMPILER_NAME_DIR "vs2010") | ||
elseif (WIN32 AND CMAKE_GENERATOR MATCHES "Visual Studio 9.*") | ||
set(COMPILER_NAME_DIR "vs2008") | ||
elseif (WIN32 AND CMAKE_GENERATOR MATCHES "Visual Studio 8.*") | ||
set(COMPILER_NAME_DIR "vs2005") | ||
else() | ||
set(CMAKE_INSTALL_LIBDIR "") | ||
endif() | ||
|
||
if (NOT COMPILER_NAME_DIR STREQUAL "") | ||
set(CMAKE_INSTALL_LIBDIR "${CMAKE_INSTALL_PREFIX}/Library/${TARGET_DIR}/${COMPILER_NAME_DIR}" CACHE PATH "Library installation path (don't change)" FORCE) | ||
else() | ||
set(CMAKE_INSTALL_LIBDIR "${CMAKE_INSTALL_PREFIX}/Library/${TARGET_DIR}" CACHE PATH "Library installation path (don't change)" FORCE) | ||
endif() | ||
|
||
# Check for 32-bit flag on UNIX | ||
if (UNIX) | ||
if (($ENV{CFLAGS} MATCHES "-m32") AND ($ENV{CXXFLAGS} MATCHES "-m32")) | ||
set(M32_FLAG TRUE) | ||
endif() | ||
endif() | ||
|
||
# Source files... | ||
set(EXTC_SOURCES | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaFFT.c" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaFFT.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaInternal.c" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaInternal.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaRandom.c" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaRandom.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaStrings.c" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaStrings.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/gconstructor.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/stdint_msvc.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/stdint_wrap.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/uthash.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/win32_dirent.c" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/win32_dirent.h" | ||
"${MODELICA_UTILITIES_INCLUDE}/ModelicaUtilities.h" | ||
) | ||
|
||
set(TABLES_SOURCES | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaStandardTables.c" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaStandardTables.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaStandardTablesUsertab.c" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaMatIO.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/gconstructor.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/stdint_msvc.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/stdint_wrap.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/uthash.h" | ||
"${MODELICA_UTILITIES_INCLUDE}/ModelicaUtilities.h" | ||
) | ||
|
||
set(MATIO_SOURCES | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaMatIO.c" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaMatIO.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/read_data_impl.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/safe-math.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/snprintf.c" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/stdint_msvc.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/zlib/zlib.h" | ||
"${MODELICA_UTILITIES_INCLUDE}/ModelicaUtilities.h" | ||
) | ||
|
||
set(IO_SOURCES | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaIO.c" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaIO.h" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/ModelicaMatIO.h" | ||
"${MODELICA_UTILITIES_INCLUDE}/ModelicaUtilities.h" | ||
) | ||
|
||
file(GLOB ZLIB_SOURCES | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/zlib/*.c" | ||
"${MODELICA_RESOURCES_DIR}/C-Sources/zlib/*.h" | ||
) | ||
|
||
# Libraries... | ||
add_library(ModelicaExternalC STATIC ${EXTC_SOURCES}) | ||
add_library(ModelicaStandardTables STATIC ${TABLES_SOURCES}) | ||
add_library(ModelicaMatIO STATIC ${MATIO_SOURCES}) | ||
add_library(ModelicaIO STATIC ${IO_SOURCES}) | ||
add_library(zlib STATIC ${ZLIB_SOURCES}) | ||
|
||
if (MODELICA_DEBUG_TIME_EVENTS) | ||
target_compile_definitions(ModelicaStandardTables PUBLIC -DDEBUG_TIME_EVENTS=1) | ||
endif() | ||
if (MODELICA_SHARE_TABLE_DATA) | ||
target_compile_definitions(ModelicaStandardTables PUBLIC -DTABLE_SHARE=1) | ||
endif() | ||
if (NOT MODELICA_COPY_TABLE_DATA) | ||
target_compile_definitions(ModelicaStandardTables PUBLIC -DNO_TABLE_COPY=1) | ||
endif() | ||
if (MODELICA_DUMMY_FUNCTION_USERTAB) | ||
target_compile_definitions(ModelicaStandardTables PUBLIC -DDUMMY_FUNCTION_USERTAB=1) | ||
endif() | ||
target_compile_definitions(ModelicaMatIO PUBLIC -DHAVE_ZLIB=1) | ||
get_modelica_platform_name_with_compiler_version(MODELICA_PLATFORM_NAME) | ||
set(CMAKE_INSTALL_LIBDIR "${CMAKE_INSTALL_PREFIX}/Library/${MODELICA_PLATFORM_NAME}" CACHE PATH "Library installation path (don't change)" FORCE) | ||
|
||
# Installation... | ||
install(TARGETS ModelicaStandardTables ModelicaMatIO ModelicaIO zlib | ||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
) | ||
include(compiler_options.cmake) | ||
include(options.cmake) | ||
include(src.cmake) |
77 changes: 77 additions & 0 deletions
77
Modelica/Resources/BuildProjects/CMake/Modelica_platform.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# Determines the Modelica platform name of the current platform | ||
function(get_modelica_platform_name var) | ||
set(IS_64BIT_BUILD false) | ||
if(CMAKE_SIZEOF_VOID_P EQUAL 8) | ||
set(IS_64BIT_BUILD true) | ||
endif() | ||
if(APPLE) | ||
list(LENGTH CMAKE_OSX_ARCHITECTURES NUMBER_OF_OSX_ARCHITECTURES) | ||
if (NUMBER_OF_OSX_ARCHITECTURES EQUAL 0) | ||
if (CMAKE_HOST_SYSTEM_PROCESSOR STREQUAL "x86_64") | ||
set(PLATFORM_PATH_SUFFIX "darwin64") | ||
elseif (CMAKE_HOST_SYSTEM_PROCESSOR STREQUAL "arm64") | ||
set(PLATFORM_PATH_SUFFIX "aarch64-darwin") | ||
else() | ||
message(FATAL_ERROR "Unknown macOS architecture CMAKE_HOST_SYSTEM_PROCESSOR=${CMAKE_HOST_SYSTEM_PROCESSOR}.") | ||
endif() | ||
elseif(NUMBER_OF_OSX_ARCHITECTURES EQUAL 1) | ||
if (CMAKE_OSX_ARCHITECTURES STREQUAL "x86_64") | ||
set(PLATFORM_PATH_SUFFIX "darwin64") | ||
elseif (CMAKE_OSX_ARCHITECTURES STREQUAL "arm64") | ||
set(PLATFORM_PATH_SUFFIX "aarch64-darwin") | ||
else() | ||
message(FATAL_ERROR "Unknown macOS architecture CMAKE_OSX_ARCHITECTURES=${CMAKE_OSX_ARCHITECTURES}.") | ||
endif() | ||
else() | ||
message(FATAL_ERROR "Universal builds not supported CMAKE_OSX_ARCHITECTURES=${CMAKE_OSX_ARCHITECTURES}.") | ||
endif() | ||
elseif(UNIX) | ||
if(IS_64BIT_BUILD) | ||
set(PLATFORM_PATH_SUFFIX "linux64") | ||
else() | ||
set(PLATFORM_PATH_SUFFIX "linux32") | ||
endif() | ||
elseif(MSVC OR MINGW) | ||
if(IS_64BIT_BUILD) | ||
set(PLATFORM_PATH_SUFFIX "win64") | ||
else() | ||
set(PLATFORM_PATH_SUFFIX "win32") | ||
endif() | ||
else() | ||
message(FATAL_ERROR "Unsupported compiler environment") | ||
endif() | ||
|
||
message(STATUS "Building for Modelica platform ${PLATFORM_PATH_SUFFIX}") | ||
|
||
set(${var} ${PLATFORM_PATH_SUFFIX} PARENT_SCOPE) | ||
endfunction() | ||
|
||
# Determines the Modelica platform name of the current platform, including VS version | ||
function(get_modelica_platform_name_with_compiler_version var) | ||
|
||
get_modelica_platform_name(PLATFORM_PATH_SUFFIX) | ||
|
||
if(WIN32) | ||
if(MSVC_VERSION EQUAL 1400) | ||
set(PLATFORM_PATH_SUFFIX "${PLATFORM_PATH_SUFFIX}/vs2005") | ||
elseif(MSVC_VERSION EQUAL 1500) | ||
set(PLATFORM_PATH_SUFFIX "${PLATFORM_PATH_SUFFIX}/vs2008") | ||
elseif(MSVC_VERSION EQUAL 1600) | ||
set(PLATFORM_PATH_SUFFIX "${PLATFORM_PATH_SUFFIX}/vs2010") | ||
elseif(MSVC_VERSION EQUAL 1700) | ||
set(PLATFORM_PATH_SUFFIX "${PLATFORM_PATH_SUFFIX}/vs2012") | ||
elseif(MSVC_VERSION EQUAL 1800) | ||
set(PLATFORM_PATH_SUFFIX "${PLATFORM_PATH_SUFFIX}/vs2013") | ||
elseif(MSVC_VERSION EQUAL 1900) | ||
set(PLATFORM_PATH_SUFFIX "${PLATFORM_PATH_SUFFIX}/vs2015") | ||
elseif(MSVC_VERSION GREATER_EQUAL 1910 AND MSVC_VERSION LESS 1920) | ||
set(PLATFORM_PATH_SUFFIX "${PLATFORM_PATH_SUFFIX}/vs2017") | ||
elseif(MSVC_VERSION GREATER_EQUAL 1920 AND MSVC_VERSION LESS 1930) | ||
set(PLATFORM_PATH_SUFFIX "${PLATFORM_PATH_SUFFIX}/vs2019") | ||
elseif(MSVC_VERSION GREATER_EQUAL 1930 AND MSVC_VERSION LESS 1940) | ||
set(PLATFORM_PATH_SUFFIX "${PLATFORM_PATH_SUFFIX}/vs2022") | ||
endif() | ||
endif() | ||
|
||
set(${var} ${PLATFORM_PATH_SUFFIX} PARENT_SCOPE) | ||
endfunction() |
14 changes: 14 additions & 0 deletions
14
Modelica/Resources/BuildProjects/CMake/Modelica_utilities.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
if(DEFINED MODELICA_UTILITIES_INCLUDE) | ||
if(NOT MODELICA_UTILITIES_INCLUDE STREQUAL "") | ||
include_directories(${MODELICA_UTILITIES_INCLUDE}) | ||
else() | ||
message(FATAL_ERROR "MODELICA_UTILITIES_INCLUDE is an empty string.") | ||
endif() | ||
else() | ||
set(MODELICA_UTILITIES_INCLUDE "" CACHE PATH "Include directory of the (tool-vendor specific) ModelicaUtilities.h header file") | ||
if(NOT MODELICA_UTILITIES_INCLUDE STREQUAL "") | ||
include_directories(${MODELICA_UTILITIES_INCLUDE}) | ||
else() | ||
message(FATAL_ERROR "MODELICA_UTILITIES_INCLUDE is an empty string.") | ||
endif() | ||
endif() |
30 changes: 30 additions & 0 deletions
30
Modelica/Resources/BuildProjects/CMake/compiler_options.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
include(CheckSymbolExists) | ||
check_symbol_exists(memcpy "string.h" HAVE_MEMCPY) | ||
|
||
include(CheckIncludeFile) | ||
check_include_file("dirent.h" HAVE_DIRENT_H) | ||
check_include_file("locale.h" HAVE_LOCALE_H) | ||
check_include_file("pthread.h" HAVE_PTHREAD_H) | ||
check_include_file("stdarg.h" HAVE_STDARG_H) | ||
check_include_file("time.h" HAVE_TIME_H) | ||
check_include_file("unistd.h" HAVE_UNISTD_H) | ||
check_include_file("winapifamily.h" HAVE_WINAPIFAMILY_H) | ||
|
||
include(CheckCSourceCompiles) | ||
check_c_source_compiles( | ||
" | ||
#include <stdlib.h> | ||
static void f(void) __attribute__ ((visibility(\"hidden\"))); | ||
int main(void) {return 0;} | ||
" | ||
HAVE_ATTRIBUTE_VISIBILITY_HIDDEN | ||
) | ||
if (HAVE_UNISTD_H) | ||
check_c_source_compiles( | ||
" | ||
#include <unistd.h> | ||
int main(void) {getpid(); return 0;} | ||
" | ||
HAVE_GETPID | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Option to trace time events | ||
option(MODELICA_DEBUG_TIME_EVENTS "Trace time events of CombiTimeTable" OFF) | ||
|
||
# Option to share table arrays | ||
option(MODELICA_SHARE_TABLE_DATA "Store shared table arrays (read from file) in a global hash table" ON) | ||
|
||
# Option to deep-copy table arrays | ||
option(MODELICA_COPY_TABLE_DATA "Deep-copy table arrays (passed as array)" ON) | ||
|
||
# Option to add a dummy function "usertab" | ||
option(MODELICA_DUMMY_FUNCTION_USERTAB "Add a dummy usertab function" OFF) |
Oops, something went wrong.