10 lines
204 B
CMake
10 lines
204 B
CMake
cmake_minimum_required(VERSION 3.25)
|
|
project(c_libs C)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
|
|
include_directories(.)
|
|
|
|
add_executable(c_libs
|
|
notification.h notification.hpp notification.cpp cnotification.cpp)
|