Files
ladybird/Libraries/LibCore/CMakeLists.txt
Andreas Kling e87f889e31 Everywhere: Abandon Swift adoption
After making no progress on this for a very long time, let's acknowledge
it's not going anywhere and remove it from the codebase.
2026-02-17 10:48:09 -05:00

152 lines
3.8 KiB
CMake

# These are the minimal set of sources needed to build the code generators. We separate them to allow
# LibCore to depend on generated sources.
set(SOURCES
AddressInfoVector.cpp
ArgsParser.cpp
Directory.cpp
DirectoryEntry.cpp
DirIterator.cpp
Environment.cpp
File.cpp
MappedFile.cpp
SocketAddress.cpp
StandardPaths.cpp
Version.cpp
)
if (WIN32)
list(APPEND SOURCES
ProcessWindows.cpp
SocketpairWindows.cpp
SystemWindows.cpp)
else()
list(APPEND SOURCES
Process.cpp
System.cpp)
endif()
ladybird_lib(LibCoreMinimal coreminimal)
if (WIN32)
find_path(DIRENT_INCLUDE_DIR dirent.h REQUIRED)
target_include_directories(LibCoreMinimal PRIVATE ${DIRENT_INCLUDE_DIR})
endif()
if (${CMAKE_SYSTEM_NAME} MATCHES "NetBSD")
# NetBSD has its shm_open and shm_unlink functions in librt so we need to link that
target_link_libraries(LibCoreMinimal PRIVATE rt)
endif()
if (LAGOM_TOOLS_ONLY)
return()
endif()
set(SOURCES
ConfigFile.cpp
ElapsedTimer.cpp
EventLoop.cpp
EventLoopImplementation.cpp
EventReceiver.cpp
MimeData.cpp
Notifier.cpp
ReportTime.cpp
Resource.cpp
ResourceImplementation.cpp
ResourceImplementationFile.cpp
SharedVersion.cpp
SystemServerTakeover.cpp
ThreadEventQueue.cpp
Timer.cpp
)
if (WIN32)
list(APPEND SOURCES
SocketWindows.cpp
AnonymousBufferWindows.cpp
EventLoopImplementationWindows.cpp
UDPServerWindows.cpp
TCPServerWindows.cpp)
else()
list(APPEND SOURCES
Socket.cpp
AnonymousBuffer.cpp
EventLoopImplementationUnix.cpp
UDPServer.cpp
TCPServer.cpp)
endif()
if (NOT WIN32)
list(APPEND SOURCES LocalServer.cpp)
else()
list(APPEND SOURCES LocalServerWindows.cpp)
endif()
include(CheckIncludeFile)
check_include_file(sys/inotify.h HAVE_INOTIFY)
if (HAVE_INOTIFY)
list(APPEND SOURCES FileWatcherInotify.cpp)
else()
list(APPEND SOURCES FileWatcherUnimplemented.cpp)
endif()
# FIXME: Implement ProcessStatistics for Windows and *BSD
if (LINUX)
list(APPEND SOURCES Platform/ProcessStatisticsLinux.cpp)
elseif (APPLE AND NOT IOS)
list(APPEND SOURCES Platform/ProcessStatisticsMach.cpp)
else ()
list(APPEND SOURCES Platform/ProcessStatisticsUnimplemented.cpp)
endif()
if (LINUX OR BSD)
list(APPEND SOURCES TimeZoneWatcherUnix.cpp)
elseif (APPLE AND NOT IOS)
list(APPEND SOURCES TimeZoneWatcherMacOS.mm)
elseif (WIN32)
list(APPEND SOURCES TimeZoneWatcherWindows.cpp)
else()
list(APPEND SOURCES TimeZoneWatcherUnimplemented.cpp)
endif()
if (APPLE OR CMAKE_SYSTEM_NAME STREQUAL "GNU")
list(APPEND SOURCES MachPort.cpp)
endif()
if (APPLE)
list(APPEND SOURCES IOSurface.cpp)
endif()
ladybird_lib(LibCore core)
target_link_libraries(LibCore PRIVATE LibUnicode LibURL Threads::Threads)
target_link_libraries(LibCore PUBLIC LibCoreMinimal)
if (${CMAKE_SYSTEM_NAME} MATCHES "NetBSD")
# NetBSD has its shm_open and shm_unlink functions in librt so we need to link that
target_link_libraries(LibCore PRIVATE rt)
endif()
if (${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
# Solaris has socket and networking related functions in two extra libraries
target_link_libraries(LibCore PRIVATE nsl socket)
endif()
if (HAIKU)
# Haiku has networking related functions in the network library
target_link_libraries(LibCore PRIVATE network)
endif()
if (APPLE)
target_link_libraries(LibCore PUBLIC "-framework CoreFoundation")
target_link_libraries(LibCore PUBLIC "-framework CoreServices")
target_link_libraries(LibCore PUBLIC "-framework Foundation")
target_link_libraries(LibCore PUBLIC "-framework IOSurface")
endif()
if (WIN32)
target_link_libraries(LibCore PRIVATE ntdll.dll)
endif()
if (ANDROID)
target_link_libraries(LibCore PRIVATE log)
endif()