7 lines
162 B
CMake
7 lines
162 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(memtest LANGUAGES C)
|
|
|
|
add_executable(memtest main.c cJSON/cJSON.c)
|
|
|
|
install(TARGETS memtest RUNTIME DESTINATION bin)
|