File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -401,7 +401,7 @@ the `-DCPPWAMP_OPT_HEADERS_ONLY` option is omitted.
401401``` bash
402402git clone https://github.com/ecorm/cppwamp
403403cd cppwamp
404- cmake -DCPPWAMP_OPT_VENDORIZE -S . -B ./_build
404+ cmake -DCPPWAMP_OPT_VENDORIZE=On -S . -B ./_build
405405cmake --build ./_build
406406cmake --install ./_build --prefix ./_stage/cppwamp
407407```
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ function(cppwamp_build_boost source_dir build_dir install_dir)
9696 if (BUILD_SHARED_LIBS )
9797 list (APPEND CPPWAMP_BOOST_BUILD_ARGS "link=shared" )
9898 else ()
99- list (APPEND CPPWAMP_BOOST_BUILD_ARGS "link=static" )
99+ list (APPEND CPPWAMP_BOOST_BUILD_ARGS "link=static" "cxxflags=-fPIC" )
100100 endif ()
101101
102102 list (APPEND CPPWAMP_BOOST_BUILD_ARGS "stage" )
Original file line number Diff line number Diff line change @@ -481,22 +481,22 @@ CPPWAMP_API Variant::String typeNameOf();
481481// / @name Non-member Output
482482// ------------------------------------------------------------------------------
483483// / @{
484- /* * Outputs the given Array to the given output stream. */
484+ /* * Outputs the given Array to the given output stream. @relates Variant */
485485CPPWAMP_API std::ostream& operator <<(std::ostream& out, const Array& a);
486486
487- /* * Outputs the given Object to the given output stream. */
487+ /* * Outputs the given Object to the given output stream. @relates Variant */
488488CPPWAMP_API std::ostream& operator <<(std::ostream& out, const Object& o);
489489
490- /* * Outputs the given Variant to the given output stream. */
490+ /* * Outputs the given Variant to the given output stream. @relates Variant */
491491CPPWAMP_API std::ostream& operator <<(std::ostream& out, const Variant& v);
492492
493- /* * Outputs the given Array to a new string. */
493+ /* * Outputs the given Array to a new string. @relates Variant */
494494CPPWAMP_API std::string toString (const Array& a);
495495
496- /* * Outputs the given Object to a new string. */
496+ /* * Outputs the given Object to a new string. @relates Variant */
497497CPPWAMP_API std::string toString (const Object& o);
498498
499- /* * Outputs the given Variant to a new string. */
499+ /* * Outputs the given Variant to a new string. @relates Variant */
500500CPPWAMP_API std::string toString (const Variant& v);
501501// / @}
502502
You can’t perform that action at this time.
0 commit comments