mirror of
https://github.com/yawaflua/SpCloudCore.git
synced 2025-12-09 20:19:35 +02:00
update cmake config
This commit is contained in:
@@ -1,15 +1,25 @@
|
|||||||
# CMakeList.txt : Top-level CMake project file, do global configuration
|
cmake_minimum_required (VERSION 3.8)
|
||||||
# and include sub-projects here.
|
|
||||||
#
|
|
||||||
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)
|
if (POLICY CMP0141)
|
||||||
cmake_policy(SET CMP0141 NEW)
|
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()
|
endif()
|
||||||
|
|
||||||
project ("SpCloudMain")
|
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.
|
# Include sub-projects.
|
||||||
add_subdirectory ("SpCloudMain")
|
add_subdirectory ("SpCloudMain")
|
||||||
|
|||||||
@@ -9,7 +9,9 @@ int main()
|
|||||||
{
|
{
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
cout << "Hello CMake." << endl;
|
cout << "Hello ." << endl;
|
||||||
|
cout << "Hello 2." << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user