William Brawner
b88fba9644
This code is absolutely horrendous in its current state, with poor error handling (where it's even present) and memory leaks galore. USE AT YOUR OWN RISK. I certainly won't be publishing it anywhere or speaking of it until it's in a much better state.
14 lines
244 B
CMake
14 lines
244 B
CMake
cmake_minimum_required (VERSION 3.15.5)
|
|
|
|
set(PIHELPER_VERSION 0.1.0)
|
|
|
|
project(
|
|
pihelper
|
|
VERSION ${PIHELPER_VERSION}
|
|
)
|
|
|
|
add_subdirectory(PiHelper)
|
|
|
|
install(TARGETS pihelper libpihelper)
|
|
|
|
#target_link_libraries(PiHelper SHARED cJSON)
|