mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-02-17 10:36:24 +01:00
![Andrea Pappacoda](/assets/img/avatar_default.png)
- Fix target_precompile_headers() usage; the CemuCommon target exposes the src/Common/precompiled.h precompiled header as part of its public interface with target_precompile_headers(CemuCommon PUBLIC precompiled.h), so all the other targets wanting to use the precompiled header have to link to the CemuCommon target with target_precompile_headers(TargetName PRIVATE CemuCommon). - Set the project version to 2.0 - Set RUNTIME_OUTPUT_DIRECTORY instead of only their _DEBUG and _RELEASE variants, fixing the compilation when neither build types are defined - Use a consistent indentation style (tabs, like in the .cpp files) - Use "modern" variants of some functions, e.g. add_definitions -> add_compile_definitions
45 lines
1.0 KiB
CMake
45 lines
1.0 KiB
CMake
project(CemuGui)
|
|
|
|
file(GLOB_RECURSE CPP_FILES *.cpp)
|
|
file(GLOB_RECURSE H_FILES *.h)
|
|
add_library(CemuGui ${CPP_FILES} ${H_FILES})
|
|
|
|
set_property(TARGET CemuGui PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|
|
|
|
target_sources(CemuGui PRIVATE
|
|
wxcomponents/checkedlistctrl.cpp
|
|
wxcomponents/checkedlistctrl.h
|
|
wxcomponents/checktree.cpp
|
|
wxcomponents/checktree.h
|
|
)
|
|
|
|
target_include_directories(CemuGui PUBLIC "../")
|
|
# PUBLIC because rapidjson/document.h is included in ChecksumTool.h
|
|
target_include_directories(CemuGui PUBLIC ${RAPIDJSON_INCLUDE_DIRS})
|
|
|
|
target_link_libraries(CemuGui PRIVATE
|
|
CemuAudio
|
|
CemuCafe
|
|
CemuCommon
|
|
CemuComponents
|
|
CemuConfig
|
|
CemuInput
|
|
CemuResource
|
|
CemuUtil
|
|
Boost::headers
|
|
CURL::libcurl
|
|
libzip::zip
|
|
OpenSSL::Crypto
|
|
pugixml::pugixml
|
|
ZArchive::zarchive
|
|
)
|
|
|
|
if(ENABLE_CUBEB)
|
|
target_link_libraries(CemuGui PRIVATE cubeb::cubeb)
|
|
endif()
|
|
|
|
if (ENABLE_WXWIDGETS)
|
|
# PUBLIC because wx/app.h is included in CemuApp.h
|
|
target_link_libraries(CemuGui PUBLIC wx::base wx::core wx::gl wx::propgrid wx::xrc)
|
|
endif()
|