2 changes: 1 addition & 1 deletion 2 CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.25.0) # For MSVC RUNTIME LIBRARY, need CMP0091=NEW and cmake 3.15+ cmake_policy(SET CMP0091 NEW) project(quantlib_for_maven VERSION 1.30.0 LANGUAGES CXX) project(quantlib_for...
target_compile_definitions(${EXE_NAME} PRIVATE PPIC_VERSION_STRING="${CMAKE_PROJECT_VERSION}") if (EXISTS "${CMAKE_SOURCE_DIR}/.git") find_package(Git) set_package_properties(Git PROPERTIES TYPE OPTIONAL PURPOSE "Determine exact build version.")6...
The current minimum required version of CMake (3.17) is probably too old to natively support ifx, it looks like ifx support was introduced around CMake 3.20. We should consider bumping the minimum required version of CMake to a version with reasonable ifx support before the 5.0 release, in ...
cmake_minimum_required(VERSION 3.2.2) project(wise_RK) set(CMAKE_VERBOSE_MAKEFILE ON) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED True) set(SOURCES main.cpp devices/RK.cpp LogWriter/LogWriter.cpp) set(CMAKE_CXX_FLAGS "-DIMA -std=c++11 -Wall -Wextra -c -O2 -MMD -...
cmake_minimum_required(VERSION2.8.5) project(mlpack C CXX) set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLSON) # First, define all the compilation options. # We default to debugging mode for developers. option(DEBUG"Compile with debugging information"OFF) ...
CMake fails to set the C++ Standard used for interface (Utility) projects in Visual Studio. Meaning that code inside the project is treated by the IDE using the...
Project: CMake Issue ID: 14369 Category: CMake Reproducibility: always Severity: major Priority: normal Status: new === Date Submitted: 2013-08-20 13:27 EDT Last Modified: 2013-08-20 13:27 EDT === Summary: VS 2013 Project File ToolsVersion Incorrect Description...
cmake: directly define project version mborlandcommentedSep 16, 2024 These changes look fine to me. The real question is will this be better for you? About 2 years ago when Scipy moved to using the Boost.Math standalone submodule (scipy/scipy#17432) you were able to start tracking the ...
Hello, current branch 1.2.x declares cmake_minimum_required (VERSION 2.8.4) but it not able to generate build with CMake v2.8.10 with error CMake Error at src/CMakeLists.txt:160 (install): install TARGETS given unknown argument "INCLUDES...
cmake_minimum_required(VERSION3.3) project(untitled) set(CMAKE_C_FLAGS"${CMAKE_C_FLAGS}-Wall -Werror") set(CMAKE_RUNTIME_OUTPUT_DIRECTORY"${CMAKE_CURRENT_SOURCE_DIR}") file(GLOB untitled_SRC "*.h" "*.c" ) find_package(Curses REQUIRED) ...