You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The way to use it is configure it via some new APR_* variables (can be set to ON/OFF depending on needs) which describes what to build and if it should be installed through cmake commands:
4
+
5
+
APR_BUILD_STATIC_LIB=ON
6
+
APR_BUILD_SHARED_LIB=OFF
7
+
APR_INSTALL=ON
8
+
(all other configuration possibilities are now in the top of CMakeLists.txt file)
if shared version is preferred then apr::sharedLib should be used (and of course APR_BUILD_SHARED_LIB=ON during lib build step).
39
+
40
+
NOTICE: if APR is isntalled in not standard directory then some hint for cmake must be provided by adding install dir to CMAKE_PREFIX_PATH like for above example:
0 commit comments