WebDisk_C/CMakeLists.txt

8 lines
194 B
CMake

cmake_minimum_required(VERSION 3.0)
project(webdisk_c LANGUAGES C)
add_executable(webdisk_c main.c cJSON/cJSON.c)
set (CMAKE_C_FLAGS "-O3")
install(TARGETS webdisk_c RUNTIME DESTINATION bin)