mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-12 01:38:29 +12:00
20 lines
387 B
CMake
20 lines
387 B
CMake
project(CemuUtil)
|
|
|
|
file(GLOB_RECURSE CPP_FILES *.cpp)
|
|
file(GLOB_RECURSE H_FILES *.h)
|
|
|
|
add_library(CemuUtil ${CPP_FILES} ${H_FILES})
|
|
|
|
target_include_directories(CemuUtil PUBLIC "../")
|
|
|
|
target_link_libraries(CemuUtil PRIVATE
|
|
CemuCommon
|
|
CemuConfig
|
|
Boost::headers
|
|
Boost::nowide
|
|
OpenSSL::Crypto
|
|
)
|
|
|
|
if (ENABLE_WXWIDGETS)
|
|
target_link_libraries(CemuUtil PRIVATE wx::base wx::core)
|
|
endif()
|