mirror of
https://github.com/BreizhHardware/projetCGroupe8.git
synced 2026-03-18 21:30:32 +01:00
7 lines
155 B
CMake
7 lines
155 B
CMake
cmake_minimum_required(VERSION 3.7)
|
|
project(untitled C)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
|
|
add_executable(untitled Filmotheque.c main.c Movie.c NodeTrie.c List.c)
|