mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
20 lines
268 B
CMake
20 lines
268 B
CMake
add_library(bdisasm STATIC
|
|
dis_decode.cc
|
|
dis_groups.cc
|
|
resolve.cc
|
|
syntax.cc
|
|
)
|
|
dolphin_disable_warnings(bdisasm)
|
|
|
|
if (WIN32)
|
|
target_sources(bdisasm
|
|
PRIVATE
|
|
stdafx.cc
|
|
)
|
|
endif()
|
|
|
|
target_include_directories(bdisasm
|
|
PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|