This repository has been archived on 2025-10-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
appa-os/CMakeLists.txt
2024-11-03 19:34:35 -03:00

18 lines
359 B
CMake

cmake_minimum_required(VERSION 3.30 FATAL_ERROR)
cmake_policy(VERSION 3.30)
project(appa-os LANGUAGES C ASM)
set(CMAKE_C_STANDARD 99)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
enable_language(ASM-ATT)
option(BUILD_DOCS "Build documentation" ON)
if(BUILD_DOCS)
message(STATUS "Building documentation")
add_subdirectory(docs)
endif()
add_subdirectory(src)