update cmake config

This commit is contained in:
Hepatica
2024-08-09 21:04:21 +02:00
parent 4899c3fe1e
commit e8388f06ba
2 changed files with 19 additions and 7 deletions

View File

@@ -1,15 +1,25 @@
# CMakeList.txt : Top-level CMake project file, do global configuration
# and include sub-projects here.
#
cmake_minimum_required (VERSION 3.8)
cmake_minimum_required (VERSION 3.8)
# Enable Hot Reload for MSVC compilers if supported.
# Enable Hot Reload for MSVC compilers if supported (only applicable on Windows).
if (POLICY CMP0141)
cmake_policy(SET CMP0141 NEW)
set(CMAKE_MSVC_DEBUG_INFORMATION_FORMAT "$<IF:$<AND:$<C_COMPILER_ID:MSVC>,$<CXX_COMPILER_ID:MSVC>>,$<$<CONFIG:Debug,RelWithDebInfo>:EditAndContinue>,$<$<CONFIG:Debug,RelWithDebInfo>:ProgramDatabase>>")
endif()
project ("SpCloudMain")
# Platform-specific settings
if (CMAKE_SYSTEM_NAME STREQUAL "Windows")
# Windows-specific configuration
if (MSVC)
set(CMAKE_MSVC_DEBUG_INFORMATION_FORMAT "$<IF:$<AND:$<C_COMPILER_ID:MSVC>,$<CXX_COMPILER_ID:MSVC>>,$<$<CONFIG:Debug,RelWithDebInfo>:EditAndContinue>,$<$<CONFIG:Debug,RelWithDebInfo>:ProgramDatabase>>")
endif()
elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux")
# Linux-specific configuration
# Here you can add Linux-specific flags, libraries, etc.
# For example, enabling C++17 or another specific Linux configuration
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED True)
endif()
# Include sub-projects.
add_subdirectory ("SpCloudMain")

View File

@@ -9,7 +9,9 @@ int main()
{
while (true)
{
cout << "Hello CMake." << endl;
cout << "Hello ." << endl;
cout << "Hello 2." << endl;
}
return 0;
}