feat: link stardust-tests executable with necessary libraries

This commit is contained in:
MayaTheShy
2025-11-08 19:19:24 -05:00
parent 24376157ea
commit 044970f480

View File

@@ -26,8 +26,15 @@ add_executable(stardust-overte-client
src/InputHandler.cpp
src/NLPacketCodec.cpp
src/DomainDiscovery.cpp
)
add_executable(stardust-tests
tests/TestHarness.cpp
src/NLPacketCodec.cpp
src/DomainDiscovery.cpp
)
target_link_libraries(stardust-tests PRIVATE glm::glm ZLIB::ZLIB OpenSSL::Crypto CURL::libcurl)
find_package(CURL REQUIRED)
target_link_libraries(stardust-overte-client PRIVATE glm::glm ZLIB::ZLIB CURL::libcurl)
target_link_libraries(stardust-overte-client PRIVATE OpenSSL::Crypto)