diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 3fbac245..ca385323 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -52,7 +52,7 @@ jobs: run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: Build goopylib - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 8 --target goopylib + run: cmake --build ${{github.workspace}}/build -j 8 --target goopylib - name: Upload Binaries uses: test-room-7/action-update-file@v1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 2535c77c..62405abe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -133,9 +133,7 @@ if (MSVC) set_target_properties(goopylib PROPERTIES LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_SOURCE_DIR}/binaries/lib-${GOOPYLIB_PLATFORM_NAME}) set_target_properties(goopylib PROPERTIES LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_SOURCE_DIR}/binaries/lib-${GOOPYLIB_PLATFORM_NAME}) - set_target_properties(goopylib PROPERTIES DEBUG_POSTFIX “”) - set_target_properties(goopylib PROPERTIES RELWITHDEBINFO_POSTFIX “”) - set_target_properties(goopylib PROPERTIES RELEASE_POSTFIX “”) + set_target_properties(goopylib PROPERTIES PREFIX ../) endif () if (APPLE)