slint/examples/printerdemo_old/cpp/CMakeLists.txt
2021-04-27 12:20:06 +02:00

18 lines
681 B
CMake

# LICENSE BEGIN
# This file is part of the SixtyFPS Project -- https://sixtyfps.io
# Copyright (c) 2020 Olivier Goffart <olivier.goffart@sixtyfps.io>
# Copyright (c) 2020 Simon Hausmann <simon.hausmann@sixtyfps.io>
#
# SPDX-License-Identifier: GPL-3.0-only
# This file is also available under commercial licensing terms.
# Please contact info@sixtyfps.io for more information.
# LICENSE END
cmake_minimum_required(VERSION 3.14)
if (NOT TARGET SixtyFPS::SixtyFPS)
find_package(SixtyFPS REQUIRED)
endif()
add_executable(printerdemo_old main.cpp)
target_link_libraries(printerdemo_old PRIVATE SixtyFPS::SixtyFPS)
sixtyfps_target_60_sources(printerdemo_old ../ui/printerdemo.60)