cmake_minimum_required(VERSION 3.20)
project(PROJECT_NAME C)

set(CMAKE_C_STANDARD 11)
set(CMAKE_C_STANDARD_REQUIRED ON)

# Toolchain file should be passed via -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain.cmake
# or configured by GRIMX for the target architecture.

include_directories(include)

add_executable(${PROJECT_NAME} src/main.c)

# enable_testing()
# add_subdirectory(tests)
