You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
295 B
CMake
12 lines
295 B
CMake
cmake_minimum_required(VERSION 3.22)
|
|
project(C_Dynamic_List C)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
set(CMAKE_C_FLAGS "-pthread")
|
|
|
|
include_directories(.)
|
|
include_directories(src/test)
|
|
|
|
add_executable(C_Dynamic_List src/list.c src/test/test.c src/list.h)
|
|
|
|
add_executable(1 "Further pthread practice Qs/1.c") |