summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 0013a2c4fd136978846fdd6cd6943ddb6f6edd44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
cmake_minimum_required(
	VERSION
	3.19
)

# Project:
project(
	dux
)

# Constants:
set(
	DUX_VERSION
	34
)

# Subdirectories
add_subdirectory(
	"dux"
)
if(
	DUX_ENABLE_DEMO
)
	add_subdirectory(
		"dux-demo"
	)
endif()