diff --git a/CMakeLists.txt b/CMakeLists.txt index 20f6ff0..1827cd4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -137,6 +137,7 @@ target_link_libraries(${PROJECT_NAME} absl::strings absl::flat_hash_map zstd::zstd + OpenAL::OpenAL $<$:ws2_32> ) diff --git a/cmake/Dependencies.cmake b/cmake/Dependencies.cmake index 44c3802..407999f 100644 --- a/cmake/Dependencies.cmake +++ b/cmake/Dependencies.cmake @@ -5,6 +5,7 @@ find_package(OpenGL REQUIRED) find_package(Protobuf REQUIRED) find_package(absl REQUIRED) find_package(zstd REQUIRED) +find_package(OpenAL REQUIRED) if (UNIX AND NOT APPLE) find_package(Freetype REQUIRED) find_package(glfw3 REQUIRED) diff --git a/vcpkg.json b/vcpkg.json index 629fd6a..2f70b12 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -1,7 +1,8 @@ { "dependencies": [ "protobuf", - "zstd" + "zstd", + "openal-soft" ], "builtin-baseline": "a0400024711b283056538ac19ced80b91a83c24c" -} +} \ No newline at end of file