summaryrefslogtreecommitdiffstats
path: root/Primitives
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-02-13 04:49:03 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-02-13 04:49:03 +0000
commit66b3b5f4ff87e705b6bc65df751c91799d1f402a (patch)
tree6302d270799933f60334417f306bad7311aeddb5 /Primitives
parentMinor updates on iOS platform (diff)
downloadDiligentCore-66b3b5f4ff87e705b6bc65df751c91799d1f402a.tar.gz
DiligentCore-66b3b5f4ff87e705b6bc65df751c91799d1f402a.zip
Fixed formatting of cmake files + couple of minor updates
Diffstat (limited to 'Primitives')
-rw-r--r--Primitives/CMakeLists.txt24
1 files changed, 12 insertions, 12 deletions
diff --git a/Primitives/CMakeLists.txt b/Primitives/CMakeLists.txt
index c8ba2714..a33be7df 100644
--- a/Primitives/CMakeLists.txt
+++ b/Primitives/CMakeLists.txt
@@ -3,18 +3,18 @@ cmake_minimum_required (VERSION 3.6)
project(Primitives CXX)
set(SOURCE
- src/test.cpp
+ src/test.cpp
)
set(INTERFACE
- interface/BasicTypes.h
- interface/DataBlob.h
- interface/FileStream.h
- interface/FormatMessage.h
- interface/InterfaceID.h
- interface/MemoryAllocator.h
- interface/Object.h
- interface/ReferenceCounters.h
+ interface/BasicTypes.h
+ interface/DataBlob.h
+ interface/FileStream.h
+ interface/FormatMessage.h
+ interface/InterfaceID.h
+ interface/MemoryAllocator.h
+ interface/Object.h
+ interface/ReferenceCounters.h
)
# This should be an interface library. However, CMake does not show
@@ -24,17 +24,17 @@ set_common_target_properties(Primitives)
target_link_libraries(Primitives
PUBLIC
- BuildSettings
+ BuildSettings
)
target_include_directories(Primitives
PUBLIC
- interface
+ interface
)
source_group("interface" FILES ${INTERFACE})
source_group("src" FILES ${SOURCE})
set_target_properties(Primitives PROPERTIES
- FOLDER Core
+ FOLDER Core
)