summaryrefslogtreecommitdiff
path: root/samples/build/cmake/DumpFile/CMakeLists.txt
blob: 2253c052d6bafe54b6c98b849fddfea35c908641 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# =================================================================================================
# ADOBE SYSTEMS INCORPORATED
# Copyright 2013 Adobe Systems Incorporated
# All Rights Reserved
#
# NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
# of the Adobe license agreement accompanying it.
# =================================================================================================

# define minimum cmake version
cmake_minimum_required(VERSION 3.5.2)

# ==============================================================================
# Adding Project Name
# ==============================================================================
project (DumpFile)

# ==============================================================================
file (GLOB SOURCE_FILES ${SAMPLE_SOURCE_ROOT}/common/DumpFile.cpp ${SAMPLE_SOURCE_ROOT}/dumpfile/main.cpp )
file (GLOB COMMON_FILES ${SAMPLE_SOURCE_ROOT}/common/*.cpp  )
list(REMOVE_ITEM COMMON_FILES ${SAMPLE_SOURCE_ROOT}/common/DumpFile.cpp )


include(CMakeListsCommon.txt)