fix(lab03): use right compiler on solution

This commit is contained in:
2026-04-18 11:38:09 +00:00
parent 5eddfb17a3
commit fb67d8aad7
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -1,5 +1,4 @@
cmake_minimum_required(VERSION 3.28)
project(ex7-app)
include(../../nanopi.cmake)
add_executable(silly_led_control silly_led_control.c)
+1 -1
View File
@@ -7,7 +7,7 @@ all: build/build.ninja
# Create build directory and generate build files if needed
build/build.ninja : CMakeLists.txt
cmake -S . -B build -G "Ninja"
cmake -S . -B build -G "Ninja" -DCMAKE_TOOLCHAIN_FILE=../../nanopi.cmake
# Clean build directory
clean: