diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 2ae0f9ec7..11216cc74 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -74,7 +74,7 @@ jobs: fail-fast: false matrix: build: - - name: Regular + - name: Debug dev-build: off new-dynarec: off type: Debug @@ -82,17 +82,12 @@ jobs: dev-build: on new-dynarec: on type: Debug - target-arch: ['Win32', 'x64', 'ARM', 'ARM64'] + target-arch: ['Win32', 'x64', 'ARM64'] toolset: ['clangcl', 'v142'] exclude: - - target-arch: 'ARM' - build: - new-dynarec: off - target-arch: 'ARM64' build: new-dynarec: off - - target-arch: 'ARM' - toolset: 'clangcl' steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index f60231134..12d9c48f9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ operating systems and software designed for IBM PC systems and compatibles from 1981 through fairly recent system designs based on the PCI bus. -86Box is released under the GNU General Public License, version 2 or later. +86Box is released under the GNU General Public License, version 2 only. For more information, see the `COPYING` file. The project maintainer is [OBattler](https://github.com/OBattler). diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 69784b1e1..f33ab0958 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -95,6 +95,12 @@ if(VCPKG_TOOLCHAIN) x_vcpkg_install_local_dependencies(TARGETS 86Box DESTINATION "bin") endif() +if(MSVC) + install(FILES $ + CONFIGURATIONS Debug RelWithDebInfo + DESTINATION "bin") +endif() + add_subdirectory(device) add_subdirectory(disk) add_subdirectory(floppy) diff --git a/vcpkg.json b/vcpkg.json index e57a7db16..9fba60a48 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -3,7 +3,7 @@ "version-string": "3.0", "homepage": "https://86box.net/", "documentation": "http://86box.readthedocs.io/", - "license": "GPL-2.0-or-later", + "license": "GPL-2.0-only", "dependencies": [ "freetype", "libpng",