Open ppietrasa opened 7 years ago
RxCpp is header only library, so to use it inside your project you should include only headers without building any artifacts (lib, a).
Thank you.
So I figure the correct "build" instructions for Windows would simply be:
cd projects\build
cmake -G"NMake Makefiles" -DCMAKE_INSTALL_PREFIX=<INSTALL_DIR_OF_YOUR_CHOICE> -DCMAKE_BUILD_TYPE=RelWithDebInfo -B. ..\CMake
nmake install
This ^^ did work.
The build instructions for Windows (from README.md) are:
My CMake version is:
My CMake output is:
My nmake output is:
Is building the RxCpp.dll even supported? At first glance I see only *.hpp stuff below Rx/v2/src/rxcpp. More grepping the project for
dllexport
__declspec didn't give me any results and so I'm a little bit confused.