We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c53d5b0 + 4f56595 commit f7ca5e3Copy full SHA for f7ca5e3
rutil/CMakeLists.txt
@@ -225,8 +225,10 @@ target_add_conditional_sources(rutil WIN32
225
226
# %HOME...%\source\repos\resiprocate\builds\packages\zeroc.openssl.v142\build\native\bin\x64\Debug
227
228
-# Enable MONOTONIC clock for rutil
229
-add_definitions(-D_RESIP_MONOTONIC_CLOCK)
+option(USE_MONOTONIC_CLOCK "Enable monotonic clock" ON)
+if(USE_MONOTONIC_CLOCK)
230
+ add_definitions(-D_RESIP_MONOTONIC_CLOCK)
231
+endif()
232
233
target_compile_features(rutil PUBLIC cxx_std_11)
234
0 commit comments