Initial minimal project.

This commit is contained in:
Rasim Labibov
2017-10-18 14:47:07 +03:00
parent 624ef51102
commit 52edfb0e6b
8 changed files with 153 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 2.8)
# Common project properties
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILT_TYPE Debug CACHE STRING "Choose the type of build, options are: Debug Release" FORCE)
endif()
# 3rd party tools
find_package(Qt5 COMPONENTS Widgets Qml Quick REQUIRED)
# Directory with the source code
add_subdirectory(src)