Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

# Copyright (c) 2016-2018, Ruslan Baratov | |
# All rights reserved. | |
cmake_minimum_required(VERSION 3.2) | |
# Emulate HunterGate: | |
# * https://github.com/hunter-packages/gate | |
include("../common.cmake") | |
project(download-QtPropertyEditor) | |
# DOCUMENTATION_START { | |
hunter_add_package(QtPropertyEditor) | |
find_package(QtPropertyEditor CONFIG REQUIRED) | |
add_executable(boo boo.cpp) | |
target_link_libraries(boo PUBLIC QtPropertyEditor::PropertyEditor) | |
# DOCUMENTATION_END } |