mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-01-31 00:55:17 +01:00
28 lines
902 B
CMake
28 lines
902 B
CMake
cmake_minimum_required(VERSION 3.30)
|
|
project(WinDurango)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin/)
|
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin/)
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin/)
|
|
set(CMAKE_PDB_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin/)
|
|
|
|
add_subdirectory(projects/WinDurango.Common)
|
|
add_subdirectory(projects/WinDurango.Implementation.WinRT)
|
|
add_subdirectory(projects/WinDurango.Implementation.Native)
|
|
#add_subdirectory(projects/WinDurango.WinRT)
|
|
add_subdirectory(projects/WinDurango.etwplus)
|
|
add_subdirectory(projects/WinDurango.KernelX)
|
|
add_subdirectory(projects/WinDurango.D3D11X)
|
|
|
|
add_custom_target(WinDurango ALL DEPENDS
|
|
WinDurango.Common
|
|
WinDurango.Implementation.WinRT
|
|
WinDurango.Implementation.Native
|
|
#WinDurango.WinRT
|
|
WinDurango.etwplus
|
|
WinDurango.KernelX
|
|
WinDurango.D3D11X
|
|
)
|