CMakeLists.txt adjustments

This commit is contained in:
capitalistspz 2026-04-15 02:21:30 +01:00
parent 543d6b4b2a
commit 6338e40aa3
2 changed files with 8 additions and 3 deletions

View File

@ -9,4 +9,8 @@ add_library(CemuCamera
set_property(TARGET CemuCamera PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
target_include_directories(CemuCamera PUBLIC "../")
target_link_libraries(CemuCamera PRIVATE CemuCommon CemuUtil openpnp-capture)
target_link_libraries(CemuCamera PRIVATE
CemuCommon
CemuUtil
glm::glm
openpnp-capture)

View File

@ -1,4 +1,6 @@
add_library(CemuWxGui STATIC
CameraSettingsWindow.cpp
CameraSettingsWindow.h
canvas/IRenderCanvas.h
CemuApp.cpp
CemuApp.h
@ -112,8 +114,6 @@ add_library(CemuWxGui STATIC
wxcomponents/checktree.h
wxgui.h
wxHelper.h
CameraSettingsWindow.cpp
CameraSettingsWindow.h
)
if (ENABLE_OPENGL)
@ -161,6 +161,7 @@ target_link_libraries(CemuWxGui PRIVATE
CemuComponents
pugixml::pugixml
CemuCafe
CemuCamera
PUBLIC
CURL::libcurl
)