mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-02 21:31:24 +01:00
16 lines
240 B
CMake
16 lines
240 B
CMake
|
add_library(androidcommon STATIC
|
||
|
AndroidCommon.cpp
|
||
|
AndroidCommon.h
|
||
|
IDCache.cpp
|
||
|
IDCache.h
|
||
|
)
|
||
|
|
||
|
target_link_libraries(androidcommon
|
||
|
PRIVATE
|
||
|
android
|
||
|
log
|
||
|
"-Wl,--no-warn-mismatch"
|
||
|
"-Wl,--whole-archive"
|
||
|
"-Wl,--no-whole-archive"
|
||
|
)
|