summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
blob: 64c5f51078b58d8244099dd73f6f3180b45a4d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
cmake_minimum_required(VERSION 3.0)

cmake_policy(SET CMP0048 NEW)
cmake_policy(SET CMP0028 NEW)
cmake_policy(SET CMP0063 NEW)

project(kube VERSION 0.2)

enable_testing()

add_subdirectory(framework)
add_subdirectory(components)
add_subdirectory(accounts)
add_subdirectory(icons)
add_subdirectory(applications)

add_subdirectory(tests)