mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-02-13 03:02:47 +00:00
16 lines
342 B
CMake
16 lines
342 B
CMake
set(NAME CommonTools)
|
|
set(SRCS
|
|
DummyHandlers.cpp
|
|
)
|
|
|
|
if (NOT MINGW_BUILD)
|
|
list(APPEND SRCS
|
|
Linux/Utils/ELFContainer.cpp
|
|
Linux/Utils/ELFSymbolDatabase.cpp
|
|
)
|
|
endif()
|
|
|
|
add_library(${NAME} STATIC ${SRCS})
|
|
target_link_libraries(${NAME} FEXCore_Base FEXHeaderUtils)
|
|
target_include_directories(${NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|