So I have ``` diff --git a/cmake/options.cmake b/c...
# core
z
So I have
Copy code
diff --git a/cmake/options.cmake b/cmake/options.cmake
index 71d2c52..12b5d9f 100644
--- a/cmake/options.cmake
+++ b/cmake/options.cmake
@@ -69,7 +69,7 @@ option(OSQUERY_NO_DEBUG_SYMBOLS "Whether to build without debug symbols or not,

 option(OSQUERY_BUILD_TESTS "Whether to enable and build tests or not")

-# Unfortunately, due glog always enabling BUILD_TESTING, we have to force it off, so that tests won't be built
+# Unfortunately, due to glog always enabling BUILD_TESTING, we have to force it off, so that tests won't be built
 overwrite_cache_variable("BUILD_TESTING" "BOOL" "OFF")

 # Linux can use source and formula modules to link dependencies; this
@@ -77,7 +77,7 @@ overwrite_cache_variable("BUILD_TESTING" "BOOL" "OFF")
 if(DEFINED PLATFORM_LINUX)
   set(third_party_source_list "source;formula;facebook")
 else()
-  set(third_party_source_list "facebook")
+  set(third_party_source_list "source;facebook")
 endif()

 set(OSQUERY_THIRD_PARTY_SOURCE "${third_party_source_list}" CACHE STRING "Sources used to acquire third-party dependencies")
@@ -91,4 +91,3 @@ endif()
 detectOsqueryVersion()

 message(STATUS "osquery version: ${OSQUERY_VERSION_INTERNAL}")
But when I run
cmake .. && cmake --build .
it doesn't seem to rebuild anything.