FEX/Source/Linux/CMakeLists.txt
Ryan Houdek 069e279a18 Moves ELF handlers from FEXCore to frontend
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.
2021-06-27 02:07:56 -07:00

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)