summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3D11
diff options
context:
space:
mode:
Diffstat (limited to 'Graphics/GraphicsEngineD3D11')
-rw-r--r--Graphics/GraphicsEngineD3D11/CMakeLists.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngineD3D11/CMakeLists.txt b/Graphics/GraphicsEngineD3D11/CMakeLists.txt
index bb74dfdd..50b52bba 100644
--- a/Graphics/GraphicsEngineD3D11/CMakeLists.txt
+++ b/Graphics/GraphicsEngineD3D11/CMakeLists.txt
@@ -73,12 +73,14 @@ set(SRC
add_library(GraphicsEngineD3D11-static STATIC
${SRC} ${INTERFACE} ${INCLUDE}
+ readme.md
)
add_library(GraphicsEngineD3D11-shared SHARED
${SRC} ${INTERFACE} ${INCLUDE}
src/DLLMain.cpp
src/GraphicsEngineD3D11.def
+ readme.md
)
set_target_properties(GraphicsEngineD3D11-shared PROPERTIES
@@ -120,6 +122,9 @@ target_compile_definitions(GraphicsEngineD3D11-shared PUBLIC ENGINE_DLL)
source_group("src" FILES
${SRC}
+)
+
+source_group("dll" FILES
src/DLLMain.cpp
src/GraphicsEngineD3D11.def
)
@@ -133,3 +138,7 @@ set_target_properties(GraphicsEngineD3D11-static PROPERTIES
set_target_properties(GraphicsEngineD3D11-shared PROPERTIES
FOLDER Core/Graphics
)
+
+set_source_files_properties(
+ readme.md PROPERTIES HEADER_FILE_ONLY TRUE
+)