summaryrefslogtreecommitdiffstats
path: root/Common
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 /Common
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 'Common')
-rw-r--r--Common/CMakeLists.txt60
1 files changed, 30 insertions, 30 deletions
diff --git a/Common/CMakeLists.txt b/Common/CMakeLists.txt
index 190f5e83..93aa5895 100644
--- a/Common/CMakeLists.txt
+++ b/Common/CMakeLists.txt
@@ -3,52 +3,52 @@ cmake_minimum_required (VERSION 3.6)
project(Common CXX)
set(INCLUDE
- include/pch.h
+ include/pch.h
)
set(INTERFACE
- interface/AdvancedMath.h
- interface/BasicMath.h
- interface/AdaptiveFixedBlockAllocator.h
- interface/BasicFileStream.h
- interface/DataBlobImpl.h
- interface/DefaultRawMemoryAllocator.h
- interface/FileWrapper.h
- interface/FixedBlockMemoryAllocator.h
- interface/HashUtils.h
- interface/LockHelper.h
- interface/ObjectBase.h
- interface/RefCntAutoPtr.h
- interface/RefCountedObjectImpl.h
- interface/STDAllocator.h
- interface/StringDataBlobImpl.h
- interface/StringTools.h
- interface/Timer.h
- interface/UniqueIdentifier.h
- interface/ValidatedCast.h
+ interface/AdvancedMath.h
+ interface/BasicMath.h
+ interface/AdaptiveFixedBlockAllocator.h
+ interface/BasicFileStream.h
+ interface/DataBlobImpl.h
+ interface/DefaultRawMemoryAllocator.h
+ interface/FileWrapper.h
+ interface/FixedBlockMemoryAllocator.h
+ interface/HashUtils.h
+ interface/LockHelper.h
+ interface/ObjectBase.h
+ interface/RefCntAutoPtr.h
+ interface/RefCountedObjectImpl.h
+ interface/STDAllocator.h
+ interface/StringDataBlobImpl.h
+ interface/StringTools.h
+ interface/Timer.h
+ interface/UniqueIdentifier.h
+ interface/ValidatedCast.h
)
set(SOURCE
- src/BasicFileStream.cpp
- src/DataBlobImpl.cpp
- src/DefaultRawMemoryAllocator.cpp
- src/FixedBlockMemoryAllocator.cpp
- src/Timer.cpp
+ src/BasicFileStream.cpp
+ src/DataBlobImpl.cpp
+ src/DefaultRawMemoryAllocator.cpp
+ src/FixedBlockMemoryAllocator.cpp
+ src/Timer.cpp
)
add_library(Common STATIC ${SOURCE} ${INCLUDE} ${INTERFACE})
target_include_directories(Common
PRIVATE
- include
+ include
PUBLIC
- interface
+ interface
)
target_link_libraries(Common
PUBLIC
- BuildSettings
- TargetPlatform
+ BuildSettings
+ TargetPlatform
)
set_common_target_properties(Common)
@@ -57,5 +57,5 @@ source_group("include" FILES ${INCLUDE})
source_group("interface" FILES ${INTERFACE})
set_target_properties(Common PROPERTIES
- FOLDER Core
+ FOLDER Core
)