Skip to content
Snippets Groups Projects

Fix doxygen comments, line endings

Merged Raghunandan Netrapalli Madhusudhan requested to merge update-opsimulation into develop
Files
64
+ 7
4
@@ -30,6 +30,9 @@ option(INSTALL_SYSTEM_RUNTIME_DEPS "Copy detected system runtime dependencies to
option(INSTALL_EXTRA_RUNTIME_DEPS "Copy detected third party runtime dependencies to install directory (i.e. required shared libraries found in specified CMAKE_PREFIX_PATH)" OFF)
option(INSTALL_EXAMPLES "Install configuration examples" ON)
option(WITH_ADDRESS_SANITIZER "Build with AddressSanitizer" OFF)
option(WITH_MEMORY_SANITIZER "Build with MemorySanitizer" OFF)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# NOTE: undocumented feature of cmake
@@ -57,8 +60,8 @@ if(USE_CCACHE)
endif()
if(NOT WIN32 OR (WIN32 AND CMAKE_CROSSCOMPILING))
set(CMAKE_C_FLAGS_DEBUG "-g -O0")
set(CMAKE_CXX_FLAGS_DEBUG "-g -g -O0")
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -g -O0")
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g -O0")
endif()
if(MINGW)
@@ -88,11 +91,11 @@ if(WITH_SIMCORE OR WITH_TESTS)
find_package(Open-simulation-interface REQUIRED)
set(Boost_USE_STATIC_LIBS OFF)
find_package(Boost COMPONENTS filesystem program_options REQUIRED CONFIG)
find_package(Boost 1.85.0 COMPONENTS Headers filesystem program_options REQUIRED CONFIG)
find_package(Qt5 COMPONENTS Concurrent Core Widgets Xml XmlPatterns Test REQUIRED)
find_package(Iconv REQUIRED)
set(LIBXML2_WITH_ICONV ON)
find_package(LibXml2 REQUIRED)
find_package(LibXml2 REQUIRED CONFIG)
find_package(FMILibrary)
if(WITH_PROTOBUF_ARENA)
Loading