cmake_minimum_required(VERSION 3.0)
project(%{APPNAME})

# Find includes in corresponding build directories
set(CMAKE_INCLUDE_CURRENT_DIR ON)
# Instruct CMake to run moc automatically when needed.
set(CMAKE_AUTOMOC ON)
# Instruct CMake to create code from Qt designer ui files
set(CMAKE_AUTOUIC ON)

# Find the QtWidgets library
find_package(Qt5Widgets CONFIG REQUIRED)

set(%{APPNAMELC}_SRC
  src/main.cpp
  src/%{APPNAMELC}.cpp
)

# Tell CMake to create the helloworld executable
add_executable(%{APPNAMELC} ${%{APPNAMELC}_SRC})

# Use the Widgets module from Qt 5.
target_link_libraries(%{APPNAMELC} Qt5::Widgets)

# Install the executable
install(TARGETS %{APPNAMELC} DESTINATION bin)
