Pārlūkot izejas kodu

LibCore: Build LocalSocket on Android

Andrew Kaster 2 gadi atpakaļ
vecāks
revīzija
7de4fb2947
1 mainītis faili ar 3 papildinājumiem un 1 dzēšanām
  1. 3 1
      Userland/Libraries/LibCore/CMakeLists.txt

+ 3 - 1
Userland/Libraries/LibCore/CMakeLists.txt

@@ -41,9 +41,11 @@ if (NOT ANDROID AND NOT WIN32 AND NOT EMSCRIPTEN)
         FilePermissionsMask.cpp
         GetPassword.cpp
         Group.cpp
-        LocalServer.cpp
     )
 endif()
+if (NOT WIN32 AND NOT EMSCRIPTEN)
+    list(APPEND SOURCES LocalServer.cpp)
+endif()
 
 # FIXME: Implement Core::FileWatcher for macOS, *BSD, and Windows.
 if (SERENITYOS)