Files
86Box/src/sio/CMakeLists.txt

50 lines
1.1 KiB
CMake
Raw Normal View History

2021-01-12 18:05:25 +01:00
#
# 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.
2021-01-12 18:05:25 +01:00
#
# This file is part of the 86Box distribution.
2021-01-12 18:05:25 +01:00
#
# CMake build script.
2021-01-12 18:05:25 +01:00
#
# Authors: David Hrdlička, <hrdlickadavid@outlook.com>
2024-09-04 18:34:06 -04:00
# Jasmine Iwanek, <jriwanek@gmail.com>
2021-01-12 18:05:25 +01:00
#
2023-01-06 15:36:29 -05:00
# Copyright 2020-2021 David Hrdlička.
2024-09-04 18:34:06 -04:00
# Copyright 2024 Jasmine Iwanek.
2021-01-12 18:05:25 +01:00
#
2024-09-04 18:34:06 -04:00
add_library(sio OBJECT
sio_82091aa.c
2024-09-04 18:34:06 -04:00
sio_acc3221.c
sio_ali5123.c
sio_cbm_io.c
sio_gm82c803ab.c
sio_gm82c803c.c
sio_f82c606.c
2024-09-04 18:34:06 -04:00
sio_f82c710.c
sio_fdc37c6xx.c
sio_fdc37c67x.c
sio_fdc37c669.c
sio_fdc37c93x.c
sio_fdc37m60x.c
2023-10-23 15:50:19 -03:00
sio_it86x1f.c
sio_pc87310.c
sio_pc873xx.c
2024-09-04 18:34:06 -04:00
sio_pc87306.c
sio_pc87307.c
sio_pc87309.c
sio_w837x7.c
sio_w83877.c
sio_w83977.c
sio_um866x.c
2024-09-04 18:34:06 -04:00
sio_um8669f.c
sio_vl82c113.c
sio_vt82c686.c
)
2021-01-12 18:22:40 +01:00
if(SIO_DETECT)
target_sources(sio PRIVATE sio_detect.c)
2022-02-18 21:38:51 -05:00
endif()