summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3D11
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2017-12-05 17:36:53 +0000
committerEgor Yusov <egor.yusov@gmail.com>2017-12-05 17:36:53 +0000
commita27b9df80eb077f0a72862eda9c59962cdbcabe4 (patch)
tree379153ea2f8c29c0fdfa2b42b7da0bff3add525c /Graphics/GraphicsEngineD3D11
parentCMake: Added grouping of projects in VS solution (diff)
downloadDiligentCore-a27b9df80eb077f0a72862eda9c59962cdbcabe4.tar.gz
DiligentCore-a27b9df80eb077f0a72862eda9c59962cdbcabe4.zip
Updated cmake files
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
+)