From 66b3b5f4ff87e705b6bc65df751c91799d1f402a Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Mon, 12 Feb 2018 20:49:03 -0800 Subject: Fixed formatting of cmake files + couple of minor updates --- Common/CMakeLists.txt | 60 +++++++++++++++++++++++++-------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) (limited to 'Common') 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 ) -- cgit v1.2.3