40 lines
1.3 KiB
CMake
40 lines
1.3 KiB
CMake
#
|
|
# 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
# running old operating systems and software designed for IBM
|
|
# PC systems and compatibles from 1981 through fairly recent
|
|
# system designs based on the PCI bus.
|
|
#
|
|
# This file is part of the 86Box distribution.
|
|
#
|
|
# CMake build script.
|
|
#
|
|
# Authors: David Hrdlička, <hrdlickadavid@outlook.com>
|
|
#
|
|
# Copyright 2020,2021 David Hrdlička.
|
|
#
|
|
|
|
add_library(slirp STATIC arp_table.c bootp.c cksum.c dnssearch.c if.c ip_icmp.c
|
|
ip_input.c ip_output.c mbuf.c misc.c sbuf.c slirp.c socket.c tcp_input.c
|
|
tcp_output.c tcp_subr.c tcp_timer.c udp.c util.c version.c)
|
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "Windows")
|
|
target_link_libraries(slirp wsock32 iphlpapi)
|
|
endif()
|
|
|
|
if(QT)
|
|
if(UNIX AND NOT APPLE)
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(GLIB_PKG IMPORTED_TARGET glib-2.0)
|
|
if (GLIB_PKG_FOUND)
|
|
target_compile_definitions(slirp PRIVATE TINYGLIB_USE_GLIB)
|
|
target_link_libraries(slirp PkgConfig::GLIB_PKG)
|
|
else()
|
|
message(ERROR "GLib development headers are required when compiling with Qt on Unix")
|
|
endif()
|
|
else()
|
|
target_sources(slirp PRIVATE tinyglib.c)
|
|
endif()
|
|
else()
|
|
target_sources(slirp PRIVATE tinyglib.c)
|
|
endif()
|