Files
dx12-starter/include/CMakeLists.txt
William McVicar 90f8185cbc Following along with the example for the simple
triangle in the DirectX-Graphics-Samples repository
it can render a simple triangle
2024-04-10 23:08:59 +02:00

12 lines
207 B
CMake

target_sources(
dx12-starter PRIVATE
renderer.h
window.h
)
target_include_directories(
dx12-starter PUBLIC
${CMAKE_CURRENT_LIST_DIR}
)
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} FILES {SOURCES})