mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00:00
19 lines
268 B
CMake
19 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}
|
|
)
|