-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
26 lines (20 loc) · 768 Bytes
/
CMakeLists.txt
File metadata and controls
26 lines (20 loc) · 768 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
#-------------------------------------------------------------------------------
# Copyright (c) 2019 John D. Haughton
# SPDX-License-Identifier: MIT
#-------------------------------------------------------------------------------
cmake_minimum_required(VERSION 3.20)
project(Zif
LANGUAGES CXX
VERSION 0.6.2)
if(NOT DEFINED BUILD_TESTING)
set(BUILD_TESTING OFF CACHE BOOL "Build unit tests")
endif()
include(CTest)
add_subdirectory(PDK)
add_subdirectory(Source)
#-------------------------------------------------------------------------------
install(TARGETS zif RUNTIME DESTINATION .)
install(FILES README DESTINATION .)
install(DIRECTORY Images DESTINATION .)
install(DIRECTORY Games DESTINATION .)
install(DIRECTORY Scripts DESTINATION .)