diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6a4e210..ebc8dc6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,8 +40,8 @@ jobs: - name: Copy Build to Output working-directory: ${{env.GITHUB_WORKSPACE}} run: | - mkdir "Output\Build" - xcopy "Build" "Output\Build" /y /e + mkdir "Output\${{env.BUILD_CONFIGURATION}}" + xcopy "Build\${{env.BUILD_CONFIGURATION}}\MetaAudio.dll" "Output\${{env.BUILD_CONFIGURATION}}" /y /e shell: cmd - name: Copy SteamAppsLocation to Output diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94991a0..719cabf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,8 +46,8 @@ jobs: - name: Copy Build to Output working-directory: ${{env.GITHUB_WORKSPACE}} run: | - mkdir "Output\Build" - xcopy "Build" "Output\Build" /y /e + mkdir "Output\${{env.BUILD_CONFIGURATION}}" + xcopy "Build\${{env.BUILD_CONFIGURATION}}\MetaAudio.dll" "Output\${{env.BUILD_CONFIGURATION}}" /y /e shell: cmd - name: Copy SteamAppsLocation to Output diff --git a/CMakeLists.txt b/CMakeLists.txt index dab30f6..88d740e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,7 +71,6 @@ target_include_directories(MetaAudio ${PROJECT_SOURCE_DIR}/externals/picojson ${PROJECT_SOURCE_DIR}/externals/steamaudio/include ${PROJECT_SOURCE_DIR}/externals/alure/include/AL - ${PROJECT_SOURCE_DIR}/externals/openal-soft/include/AL ${PROJECT_SOURCE_DIR}/externals/MetaHookSv ${PROJECT_SOURCE_DIR}/externals/MetaHookSv/Interface ${PROJECT_SOURCE_DIR}/externals/MetaHookSv/HLSDK/common