1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-07-03 09:41:56 +00:00

Add exception support

This commit is contained in:
momo5502
2022-03-15 21:07:47 +01:00
parent 9823c7d62e
commit f744238aad
7 changed files with 65 additions and 1 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20)
set(CMAKE_DISABLE_SOURCE_CHANGES ON)
#set(CMAKE_DISABLE_SOURCE_CHANGES ON)
set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)
project(secret LANGUAGES C CXX)
@ -23,5 +23,6 @@ enable_driver_support()
##########################################
add_subdirectory_and_get_targets("external" EXTERNAL_TARGETS)
add_subdirectory_and_get_targets("src" SRC_TARGETS)
targets_set_warnings_as_errors(${SRC_TARGETS})