mirror of https://github.com/mgba-emu/mgba.git
CMake: Enforce -pthread for C++ (fixes #909)
This commit is contained in:
parent
f53a6b22cc
commit
4d2f721a80
|
@ -211,6 +211,7 @@ elseif(UNIX)
|
|||
endif()
|
||||
if(NOT APPLE AND NOT HAIKU)
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pthread")
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
|
||||
endif()
|
||||
|
||||
list(APPEND CORE_VFS_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src/util/vfs/vfs-fd.c ${CMAKE_CURRENT_SOURCE_DIR}/src/util/vfs/vfs-dirent.c)
|
||||
|
|
Loading…
Reference in New Issue