C++ version of the spring core repo. Used to be able to call the spring boot apis in c++ projects
Version 1.0.0
sudo apt update
sudo apt install nlohmann-json3-devbrew install nlohmann-jsonsudo apt update
sudo apt install libcurl4-openssl-devbrew install curlmkdir build &&cd build
cmake ..
make installcmake_minimum_required(VERSION3.15)
project(NewProject VERSION 1.0.0 LANGUAGESCXX)
# Set the C++ standardset(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIREDON)
# Find the FunixProductionsCore packagefind_package(FunixProductionsCoreREQUIRED)
# Add the executableadd_executable(NewProjectmain.cpp)
# Link the FunixProductionsCore librarytarget_link_libraries(NewProjectFunixProductions::FunixProductionsCore)FUNIXPRODUCTIONS_API_TOKEN=your_token