-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.cmake
27 lines (22 loc) · 1.44 KB
/
app.cmake
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
# ┌─┐┬ ┬┬─┐┌─┐┬─┐┌─┐ ┌─┐┬─┐┌─┐┌┬┐┌─┐┬ ┬┌─┐┬─┐┬┌─
# ├─┤│ │├┬┘│ │├┬┘├─┤ ├┤ ├┬┘├─┤│││├┤ ││││ │├┬┘├┴┐
# ┴ ┴└─┘┴└─└─┘┴└─┴ ┴ └ ┴└─┴ ┴┴ ┴└─┘└┴┘└─┘┴└─┴ ┴
# A Powerful General Purpose Framework
# More information in: https://aurora-fw.github.io/
#
# Copyright (C) 2017 Aurora Framework, All rights reserved.
#
# This file is part of the Aurora Framework. This framework is free
# software; you can redistribute it and/or modify it under the terms of
# the GNU General Public License version 3 as published by the Free
# Software Foundation and appearing in the file LICENSE included in the
# packaging of this file. Please review the following information to
# ensure the GNU General Public License version 3 requirements will be
# met: https://www.gnu.org/licenses/gpl-3.0.html.
message(STATUS "Loading tests-image app...")
if (NOT CONFIGURED_ONCE)
set(AURORAFW_APP_TESTS_IMAGE_SOURCE_DIR ${AURORAFW_APP_TESTS_IMAGE_DIR}/src)
endif()
add_executable(aurorafw_app_tests_image ${AURORAFW_APP_TESTS_IMAGE_SOURCE_DIR}/main.cpp)
target_link_libraries(aurorafw_app_tests_image aurorafw-core aurorafw-gengine-core aurorafw-cli aurorafw-image)
set_target_properties(aurorafw_app_tests_image PROPERTIES OUTPUT_NAME aurorafw_app_tests_image.out)