|
| 1 | +# |
| 2 | +# Copyright Intel Corporation All Rights Reserved. |
| 3 | +# |
| 4 | +# The source code, information and material ("Material") contained herein is |
| 5 | +# owned by Intel Corporation or its suppliers or licensors, and title to such |
| 6 | +# Material remains with Intel Corporation or its suppliers or licensors. The |
| 7 | +# Material contains proprietary information of Intel or its suppliers and |
| 8 | +# licensors. The Material is protected by worldwide copyright laws and treaty |
| 9 | +# provisions. No part of the Material may be used, copied, reproduced, |
| 10 | +# modified, published, uploaded, posted, transmitted, distributed or disclosed |
| 11 | +# in any way without Intel's prior express written permission. No license under |
| 12 | +# any patent, copyright or other intellectual property rights in the Material |
| 13 | +# is granted to or conferred upon you, either expressly, by implication, |
| 14 | +# inducement, estoppel or otherwise. Any license under such intellectual |
| 15 | +# property rights must be express and approved by Intel in writing. |
| 16 | +# |
| 17 | +# Unless otherwise agreed by Intel in writing, you may not remove or alter this |
| 18 | +# notice or any other notice embedded in Materials by Intel or Intel's |
| 19 | +# suppliers or licensors in any way." |
| 20 | +# |
| 21 | + |
| 22 | + |
| 23 | +CMAKE_MINIMUM_REQUIRED(VERSION 3.10) |
| 24 | + |
| 25 | +# Project name and version |
| 26 | +PROJECT("earlyapp") |
| 27 | +SET(PROJECT_VERSION_MAJOR 0) |
| 28 | +SET(PROJECT_VERSION_MINOR 9) |
| 29 | +SET(PROJECT_VERSION_PATCH 0) |
| 30 | + |
| 31 | +# Version file. |
| 32 | +CONFIGURE_FILE("version.h.in" ${CMAKE_BINARY_DIR}/include/EAVersion.h) |
| 33 | + |
| 34 | + |
| 35 | +# Program executable. |
| 36 | +SET(PROGRAM_EXE ${CMAKE_PROJECT_NAME}) |
| 37 | +SUBDIRS(src) |
| 38 | + |
| 39 | +# Service configuration |
| 40 | +SUBDIRS(config) |
| 41 | + |
| 42 | +# Resources files |
| 43 | +SUBDIRS(res) |
| 44 | + |
0 commit comments