14 lines
177 B
CMake
14 lines
177 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
# 3rd party tools
|
|
find_package(Qt5 COMPONENTS
|
|
Widgets
|
|
Qml
|
|
Quick
|
|
REQUIRED)
|
|
|
|
# Directory with the source code
|
|
add_subdirectory(src)
|
|
|
|
|