10 lines
169 B
CMake
10 lines
169 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)
|
|
|
|
|