8 lines
180 B
CMake
8 lines
180 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(webdisk_c LANGUAGES C)
|
|
|
|
add_executable(webdisk_c main.c)
|
|
set (CMAKE_C_FLAGS "-O3")
|
|
|
|
install(TARGETS webdisk_c RUNTIME DESTINATION bin)
|