blob: 2081ae35cf70ba88df64c888fef6962ab9de1680 (
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.3.0)
enable_testing()
add_subdirectory(framework)
add_subdirectory(components)
add_subdirectory(accounts)
add_subdirectory(icons)
add_subdirectory(applications)
add_subdirectory(tests)
|