mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-01-05 21:09:56 +00:00
069e279a18
Only the frontends need to deal with ELF files specifically. The backend doesn't need to be aware of them at all. Since the ELF handling is the frontend's responsibility, move all the code to the frontend.
11 lines
308 B
CMake
11 lines
308 B
CMake
set (SRCS
|
|
Utils/ELFContainer.cpp
|
|
Utils/ELFSymbolDatabase.cpp
|
|
)
|
|
|
|
add_library(FEX_Utils OBJECT ${SRCS})
|
|
target_link_libraries(FEX_Utils FEXCore)
|
|
|
|
target_include_directories(FEX_Utils PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/Source/)
|
|
target_include_directories(FEX_Utils PRIVATE ${CMAKE_BINARY_DIR}/generated)
|