mirror of
https://github.com/nicbarker/clay.git
synced 2025-04-15 10:48:04 +00:00
10 lines
213 B
CMake
10 lines
213 B
CMake
cmake_minimum_required(VERSION 3.27)
|
|
project(win32_gdi C)
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
|
|
|
add_executable(win32_gdi WIN32 main.c)
|
|
|
|
target_compile_options(win32_gdi PUBLIC)
|
|
target_include_directories(win32_gdi PUBLIC .)
|