mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-02 13:01:18 +12:00
Add all the files
This commit is contained in:
parent
e3db07a16a
commit
d60742f52b
1445 changed files with 430238 additions and 0 deletions
29
src/Cafe/CMakeLists.txt
Normal file
29
src/Cafe/CMakeLists.txt
Normal file
|
@ -0,0 +1,29 @@
|
|||
project(CemuCafe)
|
||||
|
||||
include_directories(".")
|
||||
file(GLOB_RECURSE CPP_FILES *.cpp)
|
||||
file(GLOB_RECURSE H_FILES *.h)
|
||||
add_library(CemuCafe ${CPP_FILES} ${H_FILES})
|
||||
|
||||
set_property(TARGET CemuCafe PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|
||||
|
||||
target_precompile_headers(CemuCafe PRIVATE ../Common/precompiled.h)
|
||||
|
||||
target_include_directories(CemuCafe PRIVATE ../)
|
||||
|
||||
#target_link_libraries(CemuCafe ZArchivexx)
|
||||
#target_link_libraries(CemuCafe CemuCommon CemuCore CemuConfig CemuUtil CemuResource)
|
||||
#target_link_libraries(CemuCafe OpenSSL::SSL)
|
||||
#target_link_libraries(CemuCafe ZLIB::ZLIB)
|
||||
#target_link_libraries(CemuCafe imgui::imgui)
|
||||
#target_link_libraries(CemuCafe imguiImpl)
|
||||
#target_link_libraries(CemuCafe pugixml pugixml::static pugixml::pugixml)
|
||||
#target_link_libraries(CemuCafe libzip::zip)
|
||||
target_link_libraries(CemuCafe glslang SPIRV)
|
||||
target_link_libraries(CemuCafe ih264d zarchive)
|
||||
#target_link_libraries(CemuCafe zstd::libzstd_static)
|
||||
|
||||
|
||||
IF(WIN32)
|
||||
target_link_libraries(CemuCafe iphlpapi)
|
||||
ENDIF()
|
Loading…
Add table
Add a link
Reference in a new issue