Fix typos

This commit is contained in:
David Hrdlička 2021-12-17 07:41:07 +01:00
parent 7df9e2a454
commit 275919859a
4 changed files with 7 additions and 7 deletions

View File

@ -64,7 +64,7 @@ option(MUNT "MUNT" ON)
option(VRAMDUMP "Video RAM dumping" OFF)
option(DINPUT "DirectInput" OFF)
option(DISCORD "Discord integration" ON)
option(CPPTHRAD "C++11 threads" ON)
option(CPPTHREADS "C++11 threads" ON)
option(NEW_DYNAREC "Use the PCem v15 (\"new\") dynamic recompiler" OFF)

View File

@ -39,7 +39,7 @@ add_executable(86Box WIN32 MACOSX_BUNDLE 86box.c config.c log.c random.c timer.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)
target_sources(86Box PRIVATE cpp11_thread.cpp)
endif()
if(APPLE)

View File

@ -30,8 +30,8 @@ endif()
if (NOT CPPTHREADS)
target_sources(plat PRIVATE unix_thread.c)
set(THREADS_PREFER_PTHREAD_FLAG TRUE)
find_package(Threads REQUIRED)
target_link_libraries(86Box Threads::Threads)
endif()
set(THREADS_PREFER_PTHREAD_FLAG TRUE)
find_package(Threads REQUIRED)
target_link_libraries(86Box Threads::Threads)

View File

@ -164,7 +164,7 @@ ifndef DYNAREC
DYNAREC := y
endif
ifndef CPPTHREADS
CPPTHREADS := cpp11
CPPTHREADS := y
endif
ifeq ($(DYNAREC), y)
ifeq ($(ARM), y)