mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-01-31 00:55:17 +01:00
15 lines
328 B
CMake
15 lines
328 B
CMake
cmake_minimum_required(VERSION 4.0)
|
|
project(WinDurango)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
add_subdirectory(projects/WinDurango.Common)
|
|
add_subdirectory(projects/WinDurango.WinRT)
|
|
add_subdirectory(projects/WinDurango.Kernel)
|
|
|
|
add_custom_target(WinDurango ALL DEPENDS
|
|
WinDurango.Common
|
|
WinDurango.WinRT
|
|
WinDurango.Kernel
|
|
)
|