Sébastien Gallou
Sébastien Gallou
Adding a `/boot/ssh` empty file enable SSH on headless RaspberryPi ([see "3. Enable SSH on a headless Raspberry Pi" on this page](https://www.raspberrypi.org/documentation/remote-access/ssh/)). Should SSH work without adding this file ?...
It tried it, but it doesn't work. I can not verify right now (I'm not at home), but I think script is not executable. And it's much easier to call...
I share your opinion. These macros can be useful to quickly develop with oatpp, but it also makes integration in application difficult and creates strong coupling between application logic and...
@lganzzzo In my case, I starts integrate oatpp in a application already abstracting it's webserver, my goal was to replace existing implementation by oatpp. But I don't want to break...
Did you try to use -DBUILD_SHARED_LIBS=ON instead of -DCMAKE_BUILD_SHARED=ON ?
Ok, I found the problem : no symbol is exported (MSVC requires some specific keywords to export/import symbols from a dynamic library). I suggest you provide a PR fixing that....
Hi, could you provide a PR, please ?
Hi, did you try to just set CURL_LIBRARY to libcurl : ``` set(CURL_LIBRARY libcurl) ```
I put it in the CMakeLists.txt of my project, before to call `add_subdirectory` on the curlpp directory. Here is part of my CMakeLists.txt : ``` set(CURL_INCLUDE_DIR ${CURL_SOURCE_DIR}/include) set(CURL_LIBRARY libcurl) set(CURLPP_BUILD_SHARED_LIBS...
I don't know the MacOs ecosystem, but I presume here that something needs update in your system : must probably the C++ support version provided by the toolchain. std::function is...