mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-30 15:17:25 +00:00
9 lines
277 B
CMake
9 lines
277 B
CMake
# Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
if (WIN32)
|
|
add_executable(platform_native WIN32 main.cpp appview.cpp)
|
|
target_link_libraries(platform_native PRIVATE Slint::Slint)
|
|
slint_target_sources(platform_native app-window.slint)
|
|
endif(WIN32)
|
|
|