From fba8184491e0b7ae6fab7ac01b4600d230dc4569 Mon Sep 17 00:00:00 2001 From: marsunet Date: Tue, 21 Dec 2021 17:04:22 -0800 Subject: Initial commit with window demo. --- dxcommon/CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 dxcommon/CMakeLists.txt (limited to 'dxcommon/CMakeLists.txt') diff --git a/dxcommon/CMakeLists.txt b/dxcommon/CMakeLists.txt new file mode 100644 index 0000000..ad8e2b6 --- /dev/null +++ b/dxcommon/CMakeLists.txt @@ -0,0 +1,12 @@ +cmake_minimum_required(VERSION 3.0) + +add_library(dxcommon + src/dxcommon.cc) + +target_include_directories(dxcommon PUBLIC + ${CMAKE_CURRENT_SOURCE_DIR}/include) + +target_link_libraries(dxcommon PUBLIC + DirectX-Headers + D3D12.lib + DXGI.lib) -- cgit v1.2.3