-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
33 lines (22 loc) · 762 Bytes
/
CMakeLists.txt
File metadata and controls
33 lines (22 loc) · 762 Bytes
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
28
29
30
31
32
33
# ==============================================
cmake_minimum_required(VERSION 3.15)
# ==============================================
set(NAME "SpectralRotator")
set(CODE "Sprt")
set(COMPANY "Kaixo")
set(COMPANY_CODE "Kaix")
set(WEBSITE "https://kaixo.me")
set(BUNDLE_IDENTIFIER "me.kaixo.spectralrotator")
set(VERSION_TYPE "SNAPSHOT")
set(VERSION "1.1.1")
set(INITIAL_SIZE "500, 500")
set(IS_SYNTH true)
# ==============================================
set(THEME "theme/theme.json")
set(THEME_SCHEMA "theme/schema.json")
set(PARAMETERS "resources/Parameters.xml")
# ==============================================
set (CMAKE_CXX_STANDARD 23)
project(${NAME} VERSION ${VERSION})
add_subdirectory(core)
# ==============================================