comparison CMakeLists.txt @ 0:41a299d2b278

first commit
author Dennis <denniscmartin@protonmail.com>
date Fri, 14 Oct 2022 17:11:49 +0200
parents
children edee16cfda92
comparison
equal deleted inserted replaced
-1:000000000000 0:41a299d2b278
1 cmake_minimum_required(VERSION 3.23)
2 project(maze_solver C)
3
4 set(CMAKE_C_STANDARD 99)
5
6 add_executable(maze_solver main.c)