Add a compile option to choose between thread implementations

This commit is contained in:
David Hrdlička
2021-12-17 06:59:53 +01:00
parent 707acadd36
commit 7df9e2a454
6 changed files with 212 additions and 7 deletions

View File

@@ -34,10 +34,14 @@ endif()
# WIN32 marks us as a GUI app on Windows
# MACOSX_BUNDLE prepares a macOS application bundle including with the app icon
add_executable(86Box WIN32 MACOSX_BUNDLE 86box.c config.c cpp11_thread.cpp log.c random.c timer.c io.c acpi.c apm.c
add_executable(86Box WIN32 MACOSX_BUNDLE 86box.c config.c log.c random.c timer.c io.c acpi.c apm.c
dma.c ddma.c nmi.c pic.c pit.c port_6x.c port_92.c ppi.c pci.c mca.c usb.c
device.c nvr.c nvr_at.c nvr_ps2.c rtmidi_midi.cpp ${APP_ICON_MACOSX})
if(CPPTHREADS)
target_sources(plat PRIVATE cpp11_thread.cpp)
endif()
if(APPLE)
target_link_libraries(86Box "-framework AppKit")
endif()