Link CemuCommon as PUBLIC

I know it doesn't match the rest of the `CMakeLists`
This commit is contained in:
capitalistspz 2026-04-15 03:20:36 +01:00
parent 2f6a13650e
commit 1bb26db454

View File

@ -9,8 +9,10 @@ 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
target_link_libraries(CemuCamera
PUBLIC
CemuCommon
PRIVATE
CemuUtil
glm::glm
openpnp-capture)