47 lines
1.0 KiB
CMake
47 lines
1.0 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>
|
|
# Jasmine Iwanek, <jriwanek@gmail.com>
|
|
#
|
|
# Copyright 2020-2021 David Hrdlička.
|
|
# Copyright 2024 Jasmine Iwanek.
|
|
#
|
|
|
|
add_library(hdd OBJECT
|
|
hdd.c
|
|
hdd_image.c
|
|
hdd_table.c
|
|
hdc.c
|
|
hdc_st506_xt.c
|
|
hdc_st506_at.c
|
|
hdc_xta.c
|
|
hdc_xta_ps1.c
|
|
hdc_esdi_at.c
|
|
hdc_esdi_mca.c
|
|
hdc_xtide.c
|
|
hdc_ide.c
|
|
hdc_ide_ali5213.c
|
|
hdc_ide_opti611.c
|
|
hdc_ide_cmd640.c
|
|
hdc_ide_cmd646.c
|
|
hdc_ide_rz1000.c
|
|
hdc_ide_sff8038i.c
|
|
hdc_ide_um8673f.c
|
|
hdc_ide_w83769f.c
|
|
)
|
|
|
|
add_library(rdisk OBJECT rdisk.c)
|
|
|
|
add_library(mo OBJECT mo.c)
|
|
|
|
add_subdirectory(minivhd)
|
|
target_link_libraries(86Box minivhd)
|