Hi, I want to build a libcsp for C++, I'm curious if anyone has done that and what are the steps involved. I've already made a small mod to the CMakeLists to compile using g++:
target_compile_options(csp PUBLIC cxx_std_17)
set_target_properties(csp PROPERTIES CXX_EXTENSIONS OFF)
The make file was created successfully but running make resulted in a ton of errors.
Thoughts?