FEX/Source/Tools/CommonTools/CMakeLists.txt
Ryan Houdek bea29fd2ba FEX: Moves some Linux utils to CommonTools
Was kind of in a weird place before.
2023-09-18 22:01:56 -07:00

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})