From 031f24c54e33683d3d2648b2cbb54eeaf9c5e75c Mon Sep 17 00:00:00 2001 From: Mura Li <2606021+typeless@users.noreply.github.com> Date: Mon, 20 Jul 2026 11:22:22 +0800 Subject: [PATCH 1/6] Phase 5 (1/5): retire the MSVC reference lane The transitional PE differential ran green (25/25 x 3 arches), licensing the removal of the MSVC/CMake build. Delete .github/workflows/msbuild.yml (the MSVC reference lane) and the now-orphaned `differential` job in putup-release.yml that consumed it. The differential job was a leaf -- nothing depends on it; stage-linux, chm, cygterm, package, and publish are untouched and the release still ships. The permanent structural self-check (pe_diff.py selfcheck) stays in putup.yml. --- .github/workflows/msbuild.yml | 408 ---------------------------- .github/workflows/putup-release.yml | 116 +------- 2 files changed, 10 insertions(+), 514 deletions(-) delete mode 100644 .github/workflows/msbuild.yml diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml deleted file mode 100644 index 8628f647b..000000000 --- a/.github/workflows/msbuild.yml +++ /dev/null @@ -1,408 +0,0 @@ -name: Build installer - -# Release-only. The clang-cl+xwin cross-build in putup.yml is the every-push -# gate; this MSVC installer pipeline (x86/x64/arm64 installers, chm, lng) runs -# only on version tags or manual dispatch. It stays the de-facto verifier that -# the Tupfile / CMakeLists / *.vcxproj build descriptions remain in sync, so run -# it by hand (workflow_dispatch) before merging any file add/rename. -on: - push: - tags: - - 'v*' - workflow_dispatch: - -permissions: - contents: read - -env: - NOPAUSE: 1 - -jobs: - download_libs: - runs-on: windows-2022 - - steps: - - name: Set timezone to JST - run: | - tzutil /s "Tokyo Standard Time" - - - uses: actions/checkout@v5 - - - name: Calculate cache hash - id: cache_hash - shell: bash - run: | - HASH_OUTPUT=${{ hashFiles('.github/workflows/msbuild.yml', 'buildtools/*.cmake', 'libs/download.cmake') }} - echo "hash_value=$HASH_OUTPUT" >> $GITHUB_OUTPUT - - - name: Restore cached files (buildtools) - id: cache-buildtools-restore - uses: actions/cache/restore@v5 - with: - path: | - buildtools - key: cache-buildtools-${{ steps.cache_hash.outputs.hash_value }} - - - name: Restore cached files (libs/download) - id: cache-libs_download-restore - uses: actions/cache/restore@v5 - with: - path: | - libs/download - key: cache-libs_download-${{ steps.cache_hash.outputs.hash_value }} - - - name: Install Cygwin to buildtools - if: ${{ steps.cache-buildtools-restore.outputs.cache-hit != 'true' }} - run: | - chcp 932 - buildtools/install_cygwin.bat - - - name: Install Inno Setup to buildtools - if: ${{ steps.cache-buildtools-restore.outputs.cache-hit != 'true' }} - run: | - chcp 932 - buildtools/install_innosetup.bat - - - name: Download - shell: cmd - env: - RELEASE: ${{ steps.vars.outputs.RELEASE }} - run: | - chcp 932 - installer\release.bat 10 || exit /b 1 - - - name: Save cache files (buildtools) - id: cache-buildtools-save - uses: actions/cache/save@v5 - with: - path: | - buildtools - key: cache-buildtools-${{ steps.cache_hash.outputs.hash_value }} - - - name: Save cache files (libs/download) - id: cache-libs_download-save - uses: actions/cache/save@v5 - with: - path: | - libs/download - key: cache-libs_download-${{ steps.cache_hash.outputs.hash_value }} - - build_common: - strategy: - matrix: - windows: [windows-2022] - include: - - windows: windows-2022 - VS_VERSION: 2022 - - runs-on: ${{ matrix.windows }} - - needs: [download_libs] - - env: - VS_VERSION: ${{ matrix.VS_VERSION }} - - steps: - - name: Set timezone to JST - run: | - tzutil /s "Tokyo Standard Time" - - - uses: actions/checkout@v5 - - - name: Calculate cache hash - id: cache_hash - shell: bash - run: | - HASH_OUTPUT=${{ hashFiles('.github/workflows/msbuild.yml', 'buildtools/*.cmake', 'libs/download.cmake') }} - echo "hash_value=$HASH_OUTPUT" >> $GITHUB_OUTPUT - - - name: Restore cached files (buildtools) - id: cache-buildtools-restore - uses: actions/cache/restore@v5 - with: - path: | - buildtools - key: cache-buildtools-${{ steps.cache_hash.outputs.hash_value }} - # download_libs ジョブで保存した buildtools のキャッシュがないと止まる - # このジョブでは Cygwin のインストールをしないため - fail-on-cache-miss: true - - - name: Restore cached files (libs) - id: cache-libs-restore - uses: actions/cache/restore@v5 - with: - # キャッシュに libs/download は含まれていないが、path が全く同じでないとリストアできないので !libs/download を追加 - path: | - libs - !libs/download - key: cache-${{ matrix.VS_VERSION }}-common-${{ steps.cache_hash.outputs.hash_value }} - - - name: Restore cached files (libs/download) - id: cache-libs_download-restore - uses: actions/cache/restore@v5 - with: - path: | - libs/download - key: cache-libs_download-${{ steps.cache_hash.outputs.hash_value }} - - # キャッシュから古いソースが復元されるかもしれないので、変更を取り消して最新に戻す - - name: Revert source to state before cache restore - run: | - git checkout . - - - uses: msys2/setup-msys2@v2 - - - name: Create buildinfo.json - shell: bash - run: | - cd buildtools/svnrev/ - perl svnrev.pl --root ../.. --header ../../teraterm/common/svnversion.h --cmake build_config.cmake --json build_config.json - - - name: Read buildinfo.json - id: read_buildinfo - shell: bash - run: | - json_content=$(cat buildtools/svnrev/build_config.json | jq -c .) - echo "json=$json_content" >> $GITHUB_OUTPUT - - - name: Set vars - id: vars - shell: bash - run: | - RELEASE=${{ fromJson(steps.read_buildinfo.outputs.json).RELEASE }} - echo "RELEASE=${RELEASE}" >> $GITHUB_OUTPUT - echo "RELEASE=${RELEASE}" - - - name: Build - shell: cmd - env: - RELEASE: ${{ steps.vars.outputs.RELEASE }} - run: | - chcp 932 - if "%RELEASE%"=="0" ( - installer\release.bat 13 || exit /b 1 - ) else ( - rem for release build - installer\release.bat 11 || exit /b 1 - ) - - - name: Upload to artifacts (teraterm_common) - uses: actions/upload-artifact@v7 - with: - name: teraterm_common - path: installer/Output/build/teraterm_common - - - name: Collect buildinfo - shell: bash - run: | - mkdir installer/buildinfo - cp teraterm/common/svnversion.h installer/buildinfo/ - cp buildtools/svnrev/build_config.cmake installer/buildinfo/ - cp buildtools/svnrev/build_config.json installer/buildinfo/ - - - name: Upload to artifacts (buildinfo) - uses: actions/upload-artifact@v7 - with: - name: buildinfo - path: installer/buildinfo - - - name: Clean up files before caching - run: | - chcp 932 - ci_scripts/build_appveyor_release_bat_pre_cache.bat - - - name: Save cache files (libs) - if: ${{ steps.cache-libs-restore.outputs.cache-hit != 'true' && github.event_name == 'push' }} - id: cache-libs-save - uses: actions/cache/save@v5 - with: - path: | - libs - !libs/download - key: cache-${{ matrix.VS_VERSION }}-common-${{ steps.cache_hash.outputs.hash_value }} - - build_arch: - strategy: - matrix: - windows: [windows-2022] - arch: [x86, x64, arm64] - include: - - windows: windows-2022 - VS_VERSION: 2022 - - arch: x86 - TARGET: Win32 - - arch: x64 - TARGET: x64 - - arch: arm64 - TARGET: ARM64 - - runs-on: ${{ matrix.windows }} - - needs: [build_common] - - env: - VS_VERSION: ${{ matrix.VS_VERSION }} - TARGET: ${{ matrix.TARGET }} - arch: ${{ matrix.arch }} - - steps: - - name: Set timezone to JST - run: | - tzutil /s "Tokyo Standard Time" - - - uses: actions/checkout@v5 - - - name: Calculate cache hash - id: cache_hash - shell: bash - run: | - HASH_OUTPUT=${{ hashFiles('.github/workflows/msbuild.yml', 'buildtools/*.cmake', 'libs/download.cmake') }} - echo "hash_value=$HASH_OUTPUT" >> $GITHUB_OUTPUT - - - name: Restore cached files (buildtools) - id: cache-buildtools-restore - uses: actions/cache/restore@v5 - with: - path: | - buildtools - key: cache-buildtools-${{ steps.cache_hash.outputs.hash_value }} - # download_libs ジョブで保存した buildtools のキャッシュがないと止まる - # このジョブでは Cygwin, Inno Setup のインストールをしないため - fail-on-cache-miss: true - - - name: Restore cached files (libs) - id: cache-libs-restore - uses: actions/cache/restore@v5 - with: - # キャッシュに libs/download は含まれていないが、path が全く同じでないとリストアできないので !libs/download を追加 - path: | - libs - !libs/download - key: cache-${{ matrix.VS_VERSION }}-${{ matrix.arch }}-${{ steps.cache_hash.outputs.hash_value }} - - - name: Restore cached files (libs/download) - id: cache-libs_download-restore - uses: actions/cache/restore@v5 - with: - path: | - libs/download - key: cache-libs_download-${{ steps.cache_hash.outputs.hash_value }} - - # キャッシュから古いソースが復元されるかもしれないので、変更を取り消して最新に戻す - - name: Revert source to state before cache restore - run: | - git checkout . - - - name: Download from artifacts (teraterm_common) - uses: actions/download-artifact@v7 - with: - name: teraterm_common - path: installer/Output/build/teraterm_common - - - name: Download from artifacts (buildinfo) - uses: actions/download-artifact@v7 - with: - name: buildinfo - path: installer/buildinfo - - - name: Relocation buildinfo - shell: bash - run: | - cp installer/buildinfo/svnversion.h teraterm/common/ - cp installer/buildinfo/build_config.cmake buildtools/svnrev/ - cp installer/buildinfo/build_config.json buildtools/svnrev/ - - - name: Read buildinfo.json - id: read_buildinfo - shell: bash - run: | - json_content=$(cat buildtools/svnrev/build_config.json | jq -c .) - echo "json=$json_content" >> $GITHUB_OUTPUT - - - name: Set vars - id: vars - shell: bash - run: | - VERSION=${{ fromJson(steps.read_buildinfo.outputs.json).VERSION }} - DATE_TIME=${{ fromJson(steps.read_buildinfo.outputs.json).DATE }}_${{ fromJson(steps.read_buildinfo.outputs.json).TIME }} - VCSVERSION=${{ fromJson(steps.read_buildinfo.outputs.json).GITVERSION }} - SNAPSHOT_OUTPUT=teraterm-${VERSION}-${arch}-${DATE_TIME}-${VCSVERSION}-snapshot - RELEASE_OUTPUT=teraterm-${VERSION}-${arch} - RELEASE=${{ fromJson(steps.read_buildinfo.outputs.json).RELEASE }} - if [ "$RELEASE" = "0" ]; then - OUTPUT=${SNAPSHOT_OUTPUT} - else - OUTPUT=${RELEASE_OUTPUT} - fi - echo "SNAPSHOT_OUTPUT=${SNAPSHOT_OUTPUT}" >> $GITHUB_OUTPUT - echo "RELEASE_OUTPUT=${RELEASE_OUTPUT}" >> $GITHUB_OUTPUT - echo "RELEASE=${RELEASE}" >> $GITHUB_OUTPUT - echo "OUTPUT=${OUTPUT}" >> $GITHUB_OUTPUT - echo "SNAPSHOT_OUTPUT=${SNAPSHOT_OUTPUT}" - echo "RELEASE_OUTPUT=${RELEASE_OUTPUT}" - echo "RELEASE=${RELEASE}" - echo "OUTPUT=${OUTPUT}" - - - name: Build - shell: cmd - env: - RELEASE: ${{ steps.vars.outputs.RELEASE }} - run: | - chcp 932 - if "%RELEASE%"=="0" ( - installer\release.bat 14 || exit /b 1 - ) else ( - rem for release build - installer\release.bat 12 || exit /b 1 - ) - - - name: Clean up files before caching - run: | - chcp 932 - ci_scripts/build_appveyor_release_bat_pre_cache.bat - - - name: Save cache files (libs) - if: ${{ steps.cache-libs-restore.outputs.cache-hit != 'true' && github.event_name == 'push' }} - id: cache-libs-save - uses: actions/cache/save@v5 - with: - path: | - libs - !libs/download - key: cache-${{ matrix.VS_VERSION }}-${{ matrix.arch }}-${{ steps.cache_hash.outputs.hash_value }} - - - name: Upload to artifacts (zip) - uses: actions/upload-artifact@v7 - with: - name: BUILD-${{ github.run_number }}-${{ github.run_id }}-VS${{ matrix.VS_VERSION }}-${{ matrix.arch }}-zip - path: | - installer/Output/*.zip - !installer/Output/*_pdb.zip - - - name: Upload to artifacts (pdb) - uses: actions/upload-artifact@v7 - with: - name: BUILD-${{ github.run_number }}-${{ github.run_id }}-VS${{ matrix.VS_VERSION }}-${{ matrix.arch }}-pdb - path: | - installer/Output/*_pdb.zip - - - name: Upload to artifacts (exe) - uses: actions/upload-artifact@v7 - with: - name: BUILD-${{ github.run_number }}-${{ github.run_id }}-VS${{ matrix.VS_VERSION }}-${{ matrix.arch }}-installer - path: | - installer/Output/*.exe - - - name: Upload artifacts (sha256sum) - uses: actions/upload-artifact@v7 - with: - name: BUILD-${{ github.run_number }}-${{ github.run_id }}-VS${{ matrix.VS_VERSION }}-${{ matrix.arch }}-sha256sum - path: | - installer/Output/*.sha256sum - - - name: Upload artifacts (sha512sum) - uses: actions/upload-artifact@v7 - with: - name: BUILD-${{ github.run_number }}-${{ github.run_id }}-VS${{ matrix.VS_VERSION }}-${{ matrix.arch }}-sha512sum - path: | - installer/Output/*.sha512sum diff --git a/.github/workflows/putup-release.yml b/.github/workflows/putup-release.yml index 241c5d816..1a83223ea 100644 --- a/.github/workflows/putup-release.yml +++ b/.github/workflows/putup-release.yml @@ -1,17 +1,16 @@ name: Release (putup) # Produce the shipped Tera Term release artifacts from the putup (clang-cl + xwin) -# build. Tag-triggered; workflow_dispatch for dry runs while this is built out. +# build. Tag-triggered; workflow_dispatch for dry runs. # -# Being assembled incrementally: -# [1] stage-linux -- DONE: putup build x86/x64/arm64 -> flat payload + _pdb. -# [2] package-win -- DONE: CHM (hhc) + cygterm (Cygwin gcc) + ISCC installers. -# [3] differential -- DONE: pe_diff.py diff-tree putup vs the msbuild reference. -# [4] publish -- DONE: gh release create. +# Jobs: +# stage-linux -- putup build x86/x64/arm64 -> flat payload + _pdb. +# package-win -- CHM (hhc) + cygterm (Cygwin gcc) + ISCC installers. +# publish -- gh release create. # -# NOTE: the build steps below duplicate .github/workflows/putup.yml; once the -# Windows packaging is proven they should be extracted into a reusable -# (workflow_call) workflow that both this and putup.yml invoke. +# NOTE: the build steps below duplicate .github/workflows/putup.yml; they should be +# extracted into a reusable (workflow_call) workflow that both this and putup.yml +# invoke. on: push: @@ -317,104 +316,9 @@ jobs: dist/*.sha256sum dist/*.sha512sum - # [3] Transitional differential gate (tag / dispatch only -- a PR has no MSVC - # reference, so it self-skips). Waits for the msbuild.yml run of the SAME commit, - # then diffs every putup (clang-cl) PE against its MSVC twin with pe_diff.py. A - # green run is the signal that LICENSES the Phase-5 deletion of the CMake / - # vcxproj / MSVC build. It does not gate `publish`: the release ships regardless, - # and a structural difference merely turns the run red for investigation. Runs on - # Linux -- only PRODUCING the MSVC reference needs Windows; parsing PE does not. - differential: - runs-on: ubuntu-latest - needs: [stage-linux] - if: github.event_name != 'pull_request' - permissions: - contents: read - actions: read - steps: - - uses: actions/checkout@v4 - - - name: Install pefile - run: python3 -m pip install --break-system-packages --quiet pefile - - - name: Download putup staged payloads - uses: actions/download-artifact@v4 - with: - pattern: staged-* - merge-multiple: true - - - name: Fetch the MSVC reference (msbuild.yml, same commit) - env: - GH_TOKEN: ${{ github.token }} - REPO: ${{ github.repository }} - SHA: ${{ github.sha }} - run: | - set -eu - # Both workflows fire on the same tag; find msbuild's run for this commit. - # stage-linux (this job's dependency) takes minutes, so the run is already - # registered by now -- the short retry only covers rare registration lag. - run_id="" - for i in $(seq 1 6); do - run_id=$(gh run list --workflow=msbuild.yml --commit="$SHA" --repo "$REPO" \ - --json databaseId --jq '.[0].databaseId // empty' || true) - [ -n "$run_id" ] && break - echo "msbuild run for $SHA not found yet (attempt $i); waiting 20s..." - sleep 20 - done - if [ -z "$run_id" ]; then - # A v* tag co-triggers msbuild.yml, so on a tag its absence is a real - # failure. A lone workflow_dispatch does NOT trigger msbuild -- there is - # no MSVC reference to diff against, so skip (mirrors the PR self-skip). - case "${GITHUB_REF:-}" in - refs/tags/*) echo "::error::no msbuild.yml run for tag $SHA -- the MSVC reference must co-trigger"; exit 1 ;; - *) echo "::warning::no msbuild.yml reference for $SHA (lone dispatch) -- skipping the differential gate"; exit 0 ;; - esac - fi - echo "msbuild reference run: $run_id" - - # Block until msbuild finishes (it starts with us but runs longer). Cap the - # wait so a stuck reference run fails here rather than billing to the 6h job - # limit; msbuild's 3-arch worst case is well under 90 min. - status="" - for i in $(seq 1 180); do - status=$(gh run view "$run_id" --repo "$REPO" --json status --jq '.status') - echo "msbuild run $run_id: $status" - [ "$status" = "completed" ] && break - sleep 30 - done - [ "$status" = "completed" ] || { echo "::error::msbuild run $run_id did not finish within the wait cap"; exit 1; } - echo "msbuild conclusion: $(gh run view "$run_id" --repo "$REPO" --json conclusion --jq '.conclusion')" - - # Pull each per-arch portable zip (the payload, not the *_pdb.zip) and - # unpack it. pe_diff walks recursively, so the inner dir name is irrelevant. - for msarch in x86 x64 arm64; do - if ! gh run download "$run_id" --repo "$REPO" \ - --pattern "BUILD-*-VS2022-${msarch}-zip" --dir "ref-$msarch"; then - echo "::error::no msbuild $msarch zip on run $run_id (did the MSVC $msarch build fail?)" - exit 1 - fi - zip=$(find "ref-$msarch" -name '*.zip' ! -name '*_pdb.zip' | head -1) - [ -n "$zip" ] || { echo "::error::no portable zip inside the $msarch reference artifact"; exit 1; } - unzip -q "$zip" -d "ref-$msarch/tree" - done - - - name: Structural differential (putup clang-cl vs MSVC, per arch) - run: | - set -eu - rc=0 - # : - for pair in "x86_64:x64" "x86:x86" "arm64:arm64"; do - putup="teraterm-${pair%%:*}" - msarch="${pair##*:}" - echo "::group::diff $putup vs msbuild $msarch" - python3 ci_scripts/pe_diff.py diff-tree "$putup" "ref-$msarch/tree" || rc=1 - echo "::endgroup::" - done - exit $rc - - # [4] Publish the GitHub Release (tag pushes only -- dispatch / PR have no tag to + # Publish the GitHub Release (tag pushes only -- dispatch / PR have no tag to # release, so this self-skips). Attaches the installers, portable + PDB zips, and - # checksums that `package` built. Independent of `differential`. + # checksums that `package` built. publish: runs-on: ubuntu-latest needs: [package] From 5277387407ac0450c031079d77a59df744647c1f Mon Sep 17 00:00:00 2001 From: Mura Li <2606021+typeless@users.noreply.github.com> Date: Mon, 20 Jul 2026 11:23:12 +0800 Subject: [PATCH 2/6] Phase 5 (2/5): delete the MSVC project files (vcxproj/filters/sln/slnx) Remove all 193 tracked Visual Studio project files (96 .vcxproj, 76 .vcxproj.filters, 14 .sln, 7 .slnx across the 7 solution families) -- the MSVC build the putup (clang-cl + xwin) build replaces. The vendored third-party VS solutions under libs/ (argon2, zlib) are git-ignored and downloaded at CI time, so they are unaffected. --- TTProxy/TTProxy.v16.sln | 37 - TTProxy/TTProxy.v16.vcxproj | 433 ---------- TTProxy/TTProxy.v16.vcxproj.filters | 118 --- TTProxy/TTProxy.v17.sln | 37 - TTProxy/TTProxy.v17.vcxproj | 433 ---------- TTProxy/TTProxy.v17.vcxproj.filters | 118 --- TTProxy/TTProxy.v18.slnx | 8 - TTProxy/TTProxy.v18.vcxproj | 433 ---------- TTProxy/TTProxy.v18.vcxproj.filters | 118 --- TTXKanjiMenu/ttxkanjimenu.v16.sln | 34 - TTXKanjiMenu/ttxkanjimenu.v16.vcxproj | 282 ------- TTXKanjiMenu/ttxkanjimenu.v16.vcxproj.filters | 35 - TTXKanjiMenu/ttxkanjimenu.v17.sln | 34 - TTXKanjiMenu/ttxkanjimenu.v17.vcxproj | 282 ------- TTXKanjiMenu/ttxkanjimenu.v17.vcxproj.filters | 35 - TTXKanjiMenu/ttxkanjimenu.v18.slnx | 8 - TTXKanjiMenu/ttxkanjimenu.v18.vcxproj | 282 ------- TTXKanjiMenu/ttxkanjimenu.v18.vcxproj.filters | 35 - .../TTXAlwaysOnTop/TTXAlwaysOnTop.v16.vcxproj | 261 ------ .../TTXAlwaysOnTop.v16.vcxproj.filters | 25 - .../TTXAlwaysOnTop/TTXAlwaysOnTop.v17.vcxproj | 261 ------ .../TTXAlwaysOnTop.v17.vcxproj.filters | 25 - .../TTXAlwaysOnTop/TTXAlwaysOnTop.v18.vcxproj | 261 ------ .../TTXAlwaysOnTop.v18.vcxproj.filters | 25 - .../TTXCallSysMenu/TTXCallSysMenu.v16.vcxproj | 249 ------ .../TTXCallSysMenu.v16.vcxproj.filters | 25 - .../TTXCallSysMenu/TTXCallSysMenu.v17.vcxproj | 249 ------ .../TTXCallSysMenu.v17.vcxproj.filters | 25 - .../TTXCallSysMenu/TTXCallSysMenu.v18.vcxproj | 249 ------ .../TTXCallSysMenu.v18.vcxproj.filters | 25 - .../TTXChangeFontSize.v16.vcxproj | 287 ------- .../TTXChangeFontSize.v16.vcxproj.filters | 25 - .../TTXChangeFontSize.v17.vcxproj | 287 ------- .../TTXChangeFontSize.v17.vcxproj.filters | 25 - .../TTXChangeFontSize.v18.vcxproj | 287 ------- .../TTXChangeFontSize.v18.vcxproj.filters | 25 - .../TTXCheckUpdate/TTXCheckUpdate.v16.vcxproj | 272 ------ .../TTXCheckUpdate.v16.vcxproj.filters | 56 -- .../TTXCheckUpdate/TTXCheckUpdate.v17.vcxproj | 272 ------ .../TTXCheckUpdate.v17.vcxproj.filters | 56 -- .../TTXCheckUpdate/TTXCheckUpdate.v18.vcxproj | 272 ------ .../TTXCheckUpdate.v18.vcxproj.filters | 56 -- .../TTXCommandLineOpt.v16.vcxproj | 261 ------ .../TTXCommandLineOpt.v16.vcxproj.filters | 25 - .../TTXCommandLineOpt.v17.vcxproj | 261 ------ .../TTXCommandLineOpt.v17.vcxproj.filters | 25 - .../TTXCommandLineOpt.v18.vcxproj | 261 ------ .../TTXCommandLineOpt.v18.vcxproj.filters | 25 - .../TTXCopyIniFile/TTXCopyIniFile.v16.vcxproj | 249 ------ .../TTXCopyIniFile.v16.vcxproj.filters | 25 - .../TTXCopyIniFile/TTXCopyIniFile.v17.vcxproj | 249 ------ .../TTXCopyIniFile.v17.vcxproj.filters | 25 - .../TTXCopyIniFile/TTXCopyIniFile.v18.vcxproj | 249 ------ .../TTXCopyIniFile.v18.vcxproj.filters | 25 - .../TTXFixedWinSize.v16.vcxproj | 249 ------ .../TTXFixedWinSize.v16.vcxproj.filters | 25 - .../TTXFixedWinSize.v17.vcxproj | 249 ------ .../TTXFixedWinSize.v17.vcxproj.filters | 25 - .../TTXFixedWinSize.v18.vcxproj | 249 ------ .../TTXFixedWinSize.v18.vcxproj.filters | 25 - .../TTXKcodeChange/TTXKcodeChange.v16.vcxproj | 249 ------ .../TTXKcodeChange.v16.vcxproj.filters | 25 - .../TTXKcodeChange/TTXKcodeChange.v17.vcxproj | 249 ------ .../TTXKcodeChange.v17.vcxproj.filters | 25 - .../TTXKcodeChange/TTXKcodeChange.v18.vcxproj | 249 ------ .../TTXKcodeChange.v18.vcxproj.filters | 25 - .../TTXOutputBuffering.v16.vcxproj | 249 ------ .../TTXOutputBuffering.v16.vcxproj.filters | 25 - .../TTXOutputBuffering.v17.vcxproj | 249 ------ .../TTXOutputBuffering.v17.vcxproj.filters | 25 - .../TTXOutputBuffering.v18.vcxproj | 249 ------ .../TTXOutputBuffering.v18.vcxproj.filters | 25 - .../TTXRecurringCommand.v16.vcxproj | 273 ------- .../TTXRecurringCommand.v16.vcxproj.filters | 43 - .../TTXRecurringCommand.v17.vcxproj | 273 ------- .../TTXRecurringCommand.v17.vcxproj.filters | 43 - .../TTXRecurringCommand.v18.vcxproj | 273 ------- .../TTXRecurringCommand.v18.vcxproj.filters | 43 - .../TTXResizeMenu/TTXResizeMenu.v16.vcxproj | 267 ------ .../TTXResizeMenu.v16.vcxproj.filters | 25 - .../TTXResizeMenu/TTXResizeMenu.v17.vcxproj | 267 ------ .../TTXResizeMenu.v17.vcxproj.filters | 25 - .../TTXResizeMenu/TTXResizeMenu.v18.vcxproj | 267 ------ .../TTXResizeMenu.v18.vcxproj.filters | 25 - .../TTXResizeWin/TTXResizeWin.v16.vcxproj | 249 ------ .../TTXResizeWin.v16.vcxproj.filters | 25 - .../TTXResizeWin/TTXResizeWin.v17.vcxproj | 249 ------ .../TTXResizeWin.v17.vcxproj.filters | 25 - .../TTXResizeWin/TTXResizeWin.v18.vcxproj | 249 ------ .../TTXResizeWin.v18.vcxproj.filters | 25 - TTXSamples/TTXSamples.v16.sln | 273 ------- TTXSamples/TTXSamples.v17.sln | 273 ------- TTXSamples/TTXSamples.v18.slnx | 24 - .../TTXShowCommandLine.v16.vcxproj | 261 ------ .../TTXShowCommandLine.v16.vcxproj.filters | 25 - .../TTXShowCommandLine.v17.vcxproj | 261 ------ .../TTXShowCommandLine.v17.vcxproj.filters | 25 - .../TTXShowCommandLine.v18.vcxproj | 261 ------ .../TTXShowCommandLine.v18.vcxproj.filters | 25 - .../TTXViewMode/TTXViewMode.v16.vcxproj | 270 ------ .../TTXViewMode.v16.vcxproj.filters | 43 - .../TTXViewMode/TTXViewMode.v17.vcxproj | 270 ------ .../TTXViewMode.v17.vcxproj.filters | 43 - .../TTXViewMode/TTXViewMode.v18.vcxproj | 270 ------ .../TTXViewMode.v18.vcxproj.filters | 43 - TTXSamples/TTXttyrec/TTXttyplay.v16.vcxproj | 265 ------ .../TTXttyrec/TTXttyplay.v16.vcxproj.filters | 36 - TTXSamples/TTXttyrec/TTXttyplay.v17.vcxproj | 265 ------ .../TTXttyrec/TTXttyplay.v17.vcxproj.filters | 36 - TTXSamples/TTXttyrec/TTXttyplay.v18.vcxproj | 265 ------ .../TTXttyrec/TTXttyplay.v18.vcxproj.filters | 36 - TTXSamples/TTXttyrec/TTXttyrec.v16.vcxproj | 265 ------ .../TTXttyrec/TTXttyrec.v16.vcxproj.filters | 36 - TTXSamples/TTXttyrec/TTXttyrec.v17.vcxproj | 265 ------ .../TTXttyrec/TTXttyrec.v17.vcxproj.filters | 36 - TTXSamples/TTXttyrec/TTXttyrec.v18.vcxproj | 265 ------ .../TTXttyrec/TTXttyrec.v18.vcxproj.filters | 36 - TTXSamples/ttxtest/TTXtest.v16.vcxproj | 245 ------ .../ttxtest/TTXtest.v16.vcxproj.filters | 14 - TTXSamples/ttxtest/TTXtest.v17.vcxproj | 245 ------ .../ttxtest/TTXtest.v17.vcxproj.filters | 14 - TTXSamples/ttxtest/TTXtest.v18.vcxproj | 245 ------ .../ttxtest/TTXtest.v18.vcxproj.filters | 14 - cygwin/cyglaunch/cyglaunch.v16.vcxproj | 271 ------ cygwin/cyglaunch/cyglaunch.v17.vcxproj | 271 ------ cygwin/cyglaunch/cyglaunch.v18.vcxproj | 271 ------ cygwin/cyglib/cyglib.v16.vcxproj | 269 ------ cygwin/cyglib/cyglib.v17.vcxproj | 269 ------ cygwin/cyglib/cyglib.v18.vcxproj | 269 ------ cygwin/cygtool/cygtool.v16.vcxproj | 257 ------ cygwin/cygtool/cygtool.v17.vcxproj | 257 ------ cygwin/cygtool/cygtool.v18.vcxproj | 257 ------ cygwin/cygwin.v16.sln | 65 -- cygwin/cygwin.v17.sln | 65 -- cygwin/cygwin.v18.slnx | 10 - teraterm/common/common_static.v16.vcxproj | 445 ---------- teraterm/common/common_static.v17.vcxproj | 445 ---------- teraterm/common/common_static.v18.vcxproj | 445 ---------- teraterm/keycode/keycode.v16.vcxproj | 344 -------- teraterm/keycode/keycode.v16.vcxproj.filters | 40 - teraterm/keycode/keycode.v17.vcxproj | 344 -------- teraterm/keycode/keycode.v18.vcxproj | 344 -------- teraterm/teraterm/ttermpro.v16.vcxproj | 657 --------------- .../teraterm/ttermpro.v16.vcxproj.filters | 772 ------------------ teraterm/teraterm/ttermpro.v17.vcxproj | 657 --------------- .../teraterm/ttermpro.v17.vcxproj.filters | 772 ------------------ teraterm/teraterm/ttermpro.v18.vcxproj | 657 --------------- .../teraterm/ttermpro.v18.vcxproj.filters | 772 ------------------ teraterm/ttermpro.v16.sln | 93 --- teraterm/ttermpro.v17.sln | 93 --- teraterm/ttermpro.v18.slnx | 12 - teraterm/ttpcmn/ttpcmn.v16.vcxproj | 395 --------- teraterm/ttpcmn/ttpcmn.v16.vcxproj.filters | 95 --- teraterm/ttpcmn/ttpcmn.v17.vcxproj | 395 --------- teraterm/ttpcmn/ttpcmn.v17.vcxproj.filters | 95 --- teraterm/ttpcmn/ttpcmn.v18.vcxproj | 395 --------- teraterm/ttpcmn/ttpcmn.v18.vcxproj.filters | 95 --- teraterm/ttpmacro/ttpmacro.v16.vcxproj | 427 ---------- .../ttpmacro/ttpmacro.v16.vcxproj.filters | 176 ---- teraterm/ttpmacro/ttpmacro.v17.vcxproj | 427 ---------- .../ttpmacro/ttpmacro.v17.vcxproj.filters | 176 ---- teraterm/ttpmacro/ttpmacro.v18.vcxproj | 427 ---------- .../ttpmacro/ttpmacro.v18.vcxproj.filters | 176 ---- ttpmenu/ttpmenu.v16.sln | 34 - ttpmenu/ttpmenu.v16.vcxproj | 376 --------- ttpmenu/ttpmenu.v16.vcxproj.filters | 115 --- ttpmenu/ttpmenu.v17.sln | 34 - ttpmenu/ttpmenu.v17.vcxproj | 376 --------- ttpmenu/ttpmenu.v17.vcxproj.filters | 115 --- ttpmenu/ttpmenu.v18.slnx | 8 - ttpmenu/ttpmenu.v18.vcxproj | 376 --------- ttpmenu/ttpmenu.v18.vcxproj.filters | 115 --- ttssh2/argon2/argon2.v16.vcxproj | 213 ----- ttssh2/argon2/argon2.v16.vcxproj.filters | 55 -- ttssh2/argon2/argon2.v17.vcxproj | 213 ----- ttssh2/argon2/argon2.v17.vcxproj.filters | 55 -- ttssh2/argon2/argon2.v18.vcxproj | 213 ----- ttssh2/argon2/argon2.v18.vcxproj.filters | 55 -- .../sshagentc/sshagentc.v16.vcxproj | 241 ------ .../sshagentc/sshagentc.v17.vcxproj | 241 ------ .../sshagentc/sshagentc.v18.vcxproj | 241 ------ ttssh2/matcher/matcher.v16.vcxproj | 310 ------- ttssh2/matcher/matcher.v17.vcxproj | 310 ------- ttssh2/matcher/matcher.v18.vcxproj | 310 ------- ttssh2/ttssh.v16.sln | 79 -- ttssh2/ttssh.v17.sln | 79 -- ttssh2/ttssh.v18.slnx | 11 - ttssh2/ttxssh/ttxssh.v16.vcxproj | 492 ----------- ttssh2/ttxssh/ttxssh.v16.vcxproj.filters | 320 -------- ttssh2/ttxssh/ttxssh.v17.vcxproj | 492 ----------- ttssh2/ttxssh/ttxssh.v17.vcxproj.filters | 320 -------- ttssh2/ttxssh/ttxssh.v18.vcxproj | 492 ----------- ttssh2/ttxssh/ttxssh.v18.vcxproj.filters | 314 ------- 193 files changed, 37411 deletions(-) delete mode 100644 TTProxy/TTProxy.v16.sln delete mode 100644 TTProxy/TTProxy.v16.vcxproj delete mode 100644 TTProxy/TTProxy.v16.vcxproj.filters delete mode 100644 TTProxy/TTProxy.v17.sln delete mode 100644 TTProxy/TTProxy.v17.vcxproj delete mode 100644 TTProxy/TTProxy.v17.vcxproj.filters delete mode 100644 TTProxy/TTProxy.v18.slnx delete mode 100644 TTProxy/TTProxy.v18.vcxproj delete mode 100644 TTProxy/TTProxy.v18.vcxproj.filters delete mode 100644 TTXKanjiMenu/ttxkanjimenu.v16.sln delete mode 100644 TTXKanjiMenu/ttxkanjimenu.v16.vcxproj delete mode 100644 TTXKanjiMenu/ttxkanjimenu.v16.vcxproj.filters delete mode 100644 TTXKanjiMenu/ttxkanjimenu.v17.sln delete mode 100644 TTXKanjiMenu/ttxkanjimenu.v17.vcxproj delete mode 100644 TTXKanjiMenu/ttxkanjimenu.v17.vcxproj.filters delete mode 100644 TTXKanjiMenu/ttxkanjimenu.v18.slnx delete mode 100644 TTXKanjiMenu/ttxkanjimenu.v18.vcxproj delete mode 100644 TTXKanjiMenu/ttxkanjimenu.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v16.vcxproj delete mode 100644 TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v17.vcxproj delete mode 100644 TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v18.vcxproj delete mode 100644 TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v16.vcxproj delete mode 100644 TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v17.vcxproj delete mode 100644 TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v18.vcxproj delete mode 100644 TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v16.vcxproj delete mode 100644 TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v17.vcxproj delete mode 100644 TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v18.vcxproj delete mode 100644 TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v16.vcxproj delete mode 100644 TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v17.vcxproj delete mode 100644 TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v18.vcxproj delete mode 100644 TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v16.vcxproj delete mode 100644 TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v17.vcxproj delete mode 100644 TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v18.vcxproj delete mode 100644 TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v16.vcxproj delete mode 100644 TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v17.vcxproj delete mode 100644 TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v18.vcxproj delete mode 100644 TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v16.vcxproj delete mode 100644 TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v17.vcxproj delete mode 100644 TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v18.vcxproj delete mode 100644 TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXKcodeChange/TTXKcodeChange.v16.vcxproj delete mode 100644 TTXSamples/TTXKcodeChange/TTXKcodeChange.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXKcodeChange/TTXKcodeChange.v17.vcxproj delete mode 100644 TTXSamples/TTXKcodeChange/TTXKcodeChange.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXKcodeChange/TTXKcodeChange.v18.vcxproj delete mode 100644 TTXSamples/TTXKcodeChange/TTXKcodeChange.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v16.vcxproj delete mode 100644 TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v17.vcxproj delete mode 100644 TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v18.vcxproj delete mode 100644 TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v16.vcxproj delete mode 100644 TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v17.vcxproj delete mode 100644 TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v18.vcxproj delete mode 100644 TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXResizeMenu/TTXResizeMenu.v16.vcxproj delete mode 100644 TTXSamples/TTXResizeMenu/TTXResizeMenu.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXResizeMenu/TTXResizeMenu.v17.vcxproj delete mode 100644 TTXSamples/TTXResizeMenu/TTXResizeMenu.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXResizeMenu/TTXResizeMenu.v18.vcxproj delete mode 100644 TTXSamples/TTXResizeMenu/TTXResizeMenu.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXResizeWin/TTXResizeWin.v16.vcxproj delete mode 100644 TTXSamples/TTXResizeWin/TTXResizeWin.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXResizeWin/TTXResizeWin.v17.vcxproj delete mode 100644 TTXSamples/TTXResizeWin/TTXResizeWin.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXResizeWin/TTXResizeWin.v18.vcxproj delete mode 100644 TTXSamples/TTXResizeWin/TTXResizeWin.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXSamples.v16.sln delete mode 100644 TTXSamples/TTXSamples.v17.sln delete mode 100644 TTXSamples/TTXSamples.v18.slnx delete mode 100644 TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v16.vcxproj delete mode 100644 TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v17.vcxproj delete mode 100644 TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v18.vcxproj delete mode 100644 TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXViewMode/TTXViewMode.v16.vcxproj delete mode 100644 TTXSamples/TTXViewMode/TTXViewMode.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXViewMode/TTXViewMode.v17.vcxproj delete mode 100644 TTXSamples/TTXViewMode/TTXViewMode.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXViewMode/TTXViewMode.v18.vcxproj delete mode 100644 TTXSamples/TTXViewMode/TTXViewMode.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXttyrec/TTXttyplay.v16.vcxproj delete mode 100644 TTXSamples/TTXttyrec/TTXttyplay.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXttyrec/TTXttyplay.v17.vcxproj delete mode 100644 TTXSamples/TTXttyrec/TTXttyplay.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXttyrec/TTXttyplay.v18.vcxproj delete mode 100644 TTXSamples/TTXttyrec/TTXttyplay.v18.vcxproj.filters delete mode 100644 TTXSamples/TTXttyrec/TTXttyrec.v16.vcxproj delete mode 100644 TTXSamples/TTXttyrec/TTXttyrec.v16.vcxproj.filters delete mode 100644 TTXSamples/TTXttyrec/TTXttyrec.v17.vcxproj delete mode 100644 TTXSamples/TTXttyrec/TTXttyrec.v17.vcxproj.filters delete mode 100644 TTXSamples/TTXttyrec/TTXttyrec.v18.vcxproj delete mode 100644 TTXSamples/TTXttyrec/TTXttyrec.v18.vcxproj.filters delete mode 100644 TTXSamples/ttxtest/TTXtest.v16.vcxproj delete mode 100644 TTXSamples/ttxtest/TTXtest.v16.vcxproj.filters delete mode 100644 TTXSamples/ttxtest/TTXtest.v17.vcxproj delete mode 100644 TTXSamples/ttxtest/TTXtest.v17.vcxproj.filters delete mode 100644 TTXSamples/ttxtest/TTXtest.v18.vcxproj delete mode 100644 TTXSamples/ttxtest/TTXtest.v18.vcxproj.filters delete mode 100644 cygwin/cyglaunch/cyglaunch.v16.vcxproj delete mode 100644 cygwin/cyglaunch/cyglaunch.v17.vcxproj delete mode 100644 cygwin/cyglaunch/cyglaunch.v18.vcxproj delete mode 100644 cygwin/cyglib/cyglib.v16.vcxproj delete mode 100644 cygwin/cyglib/cyglib.v17.vcxproj delete mode 100644 cygwin/cyglib/cyglib.v18.vcxproj delete mode 100644 cygwin/cygtool/cygtool.v16.vcxproj delete mode 100644 cygwin/cygtool/cygtool.v17.vcxproj delete mode 100644 cygwin/cygtool/cygtool.v18.vcxproj delete mode 100644 cygwin/cygwin.v16.sln delete mode 100644 cygwin/cygwin.v17.sln delete mode 100644 cygwin/cygwin.v18.slnx delete mode 100644 teraterm/common/common_static.v16.vcxproj delete mode 100644 teraterm/common/common_static.v17.vcxproj delete mode 100644 teraterm/common/common_static.v18.vcxproj delete mode 100644 teraterm/keycode/keycode.v16.vcxproj delete mode 100644 teraterm/keycode/keycode.v16.vcxproj.filters delete mode 100644 teraterm/keycode/keycode.v17.vcxproj delete mode 100644 teraterm/keycode/keycode.v18.vcxproj delete mode 100644 teraterm/teraterm/ttermpro.v16.vcxproj delete mode 100644 teraterm/teraterm/ttermpro.v16.vcxproj.filters delete mode 100644 teraterm/teraterm/ttermpro.v17.vcxproj delete mode 100644 teraterm/teraterm/ttermpro.v17.vcxproj.filters delete mode 100644 teraterm/teraterm/ttermpro.v18.vcxproj delete mode 100644 teraterm/teraterm/ttermpro.v18.vcxproj.filters delete mode 100644 teraterm/ttermpro.v16.sln delete mode 100644 teraterm/ttermpro.v17.sln delete mode 100644 teraterm/ttermpro.v18.slnx delete mode 100644 teraterm/ttpcmn/ttpcmn.v16.vcxproj delete mode 100644 teraterm/ttpcmn/ttpcmn.v16.vcxproj.filters delete mode 100644 teraterm/ttpcmn/ttpcmn.v17.vcxproj delete mode 100644 teraterm/ttpcmn/ttpcmn.v17.vcxproj.filters delete mode 100644 teraterm/ttpcmn/ttpcmn.v18.vcxproj delete mode 100644 teraterm/ttpcmn/ttpcmn.v18.vcxproj.filters delete mode 100644 teraterm/ttpmacro/ttpmacro.v16.vcxproj delete mode 100644 teraterm/ttpmacro/ttpmacro.v16.vcxproj.filters delete mode 100644 teraterm/ttpmacro/ttpmacro.v17.vcxproj delete mode 100644 teraterm/ttpmacro/ttpmacro.v17.vcxproj.filters delete mode 100644 teraterm/ttpmacro/ttpmacro.v18.vcxproj delete mode 100644 teraterm/ttpmacro/ttpmacro.v18.vcxproj.filters delete mode 100644 ttpmenu/ttpmenu.v16.sln delete mode 100644 ttpmenu/ttpmenu.v16.vcxproj delete mode 100644 ttpmenu/ttpmenu.v16.vcxproj.filters delete mode 100644 ttpmenu/ttpmenu.v17.sln delete mode 100644 ttpmenu/ttpmenu.v17.vcxproj delete mode 100644 ttpmenu/ttpmenu.v17.vcxproj.filters delete mode 100644 ttpmenu/ttpmenu.v18.slnx delete mode 100644 ttpmenu/ttpmenu.v18.vcxproj delete mode 100644 ttpmenu/ttpmenu.v18.vcxproj.filters delete mode 100644 ttssh2/argon2/argon2.v16.vcxproj delete mode 100644 ttssh2/argon2/argon2.v16.vcxproj.filters delete mode 100644 ttssh2/argon2/argon2.v17.vcxproj delete mode 100644 ttssh2/argon2/argon2.v17.vcxproj.filters delete mode 100644 ttssh2/argon2/argon2.v18.vcxproj delete mode 100644 ttssh2/argon2/argon2.v18.vcxproj.filters delete mode 100644 ttssh2/libsshagentc/sshagentc/sshagentc.v16.vcxproj delete mode 100644 ttssh2/libsshagentc/sshagentc/sshagentc.v17.vcxproj delete mode 100644 ttssh2/libsshagentc/sshagentc/sshagentc.v18.vcxproj delete mode 100644 ttssh2/matcher/matcher.v16.vcxproj delete mode 100644 ttssh2/matcher/matcher.v17.vcxproj delete mode 100644 ttssh2/matcher/matcher.v18.vcxproj delete mode 100644 ttssh2/ttssh.v16.sln delete mode 100644 ttssh2/ttssh.v17.sln delete mode 100644 ttssh2/ttssh.v18.slnx delete mode 100644 ttssh2/ttxssh/ttxssh.v16.vcxproj delete mode 100644 ttssh2/ttxssh/ttxssh.v16.vcxproj.filters delete mode 100644 ttssh2/ttxssh/ttxssh.v17.vcxproj delete mode 100644 ttssh2/ttxssh/ttxssh.v17.vcxproj.filters delete mode 100644 ttssh2/ttxssh/ttxssh.v18.vcxproj delete mode 100644 ttssh2/ttxssh/ttxssh.v18.vcxproj.filters diff --git a/TTProxy/TTProxy.v16.sln b/TTProxy/TTProxy.v16.sln deleted file mode 100644 index 8d5519bb4..000000000 --- a/TTProxy/TTProxy.v16.sln +++ /dev/null @@ -1,37 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.28803.156 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTProxy", "TTProxy.v16.vcxproj", "{C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Debug|ARM64.Build.0 = Debug|ARM64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Debug|Win32.ActiveCfg = Debug|Win32 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Debug|Win32.Build.0 = Debug|Win32 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Debug|x64.ActiveCfg = Debug|x64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Debug|x64.Build.0 = Debug|x64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Release|ARM64.ActiveCfg = Release|ARM64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Release|ARM64.Build.0 = Release|ARM64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Release|Win32.ActiveCfg = Release|Win32 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Release|Win32.Build.0 = Release|Win32 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Release|x64.ActiveCfg = Release|x64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {A4DEB4C3-85FB-401C-BEFD-469E0A10C041} - EndGlobalSection -EndGlobal diff --git a/TTProxy/TTProxy.v16.vcxproj b/TTProxy/TTProxy.v16.vcxproj deleted file mode 100644 index 663a2e3e3..000000000 --- a/TTProxy/TTProxy.v16.vcxproj +++ /dev/null @@ -1,433 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB} - TTProxy - TTProxy - 10.0 - - - - DynamicLibrary - v142 - false - MultiByte - - - DynamicLibrary - v142 - false - MultiByte - - - DynamicLibrary - v142 - false - MultiByte - - - DynamicLibrary - v142 - false - MultiByte - - - DynamicLibrary - v142 - false - MultiByte - - - DynamicLibrary - v142 - false - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - false - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - false - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - false - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - true - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - true - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - true - TTXProxy - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Use - stdafx.h - Level3 - true - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - true - $(OutDir)$(ProjectName).lib - MachineX86 - - - true - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Use - stdafx.h - Level3 - true - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - true - $(OutDir)$(ProjectName).lib - - - true - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Use - stdafx.h - Level3 - true - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - true - $(OutDir)$(ProjectName).lib - - - true - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - Disabled - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Use - stdafx.h - Level3 - true - EditAndContinue - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - true - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - Disabled - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Use - stdafx.h - Level3 - true - EditAndContinue - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - $(OutDir)$(ProjectName).lib - false - - - true - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - Disabled - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Use - stdafx.h - Level3 - true - ProgramDatabase - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - $(OutDir)$(ProjectName).lib - false - - - true - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - true - true - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTProxy/TTProxy.v16.vcxproj.filters b/TTProxy/TTProxy.v16.vcxproj.filters deleted file mode 100644 index db27c396b..000000000 --- a/TTProxy/TTProxy.v16.vcxproj.filters +++ /dev/null @@ -1,118 +0,0 @@ - - - - - {3cd46c63-801a-45aa-88e0-52572525db2d} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {2a7e6b97-89c1-4fe1-abf6-cdd5617422b1} - h;hpp;hxx;hm;inl - - - {076290f0-a284-406f-9e4c-8425b4904132} - - - {f6ee589e-87d8-4a70-b138-b10962385824} - ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe - - - - - Source Files - - - Source Files - - - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - - - Source Files - - - \ No newline at end of file diff --git a/TTProxy/TTProxy.v17.sln b/TTProxy/TTProxy.v17.sln deleted file mode 100644 index aa34dba80..000000000 --- a/TTProxy/TTProxy.v17.sln +++ /dev/null @@ -1,37 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.14.36310.24 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTProxy", "TTProxy.v17.vcxproj", "{C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Debug|ARM64.Build.0 = Debug|ARM64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Debug|Win32.ActiveCfg = Debug|Win32 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Debug|Win32.Build.0 = Debug|Win32 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Debug|x64.ActiveCfg = Debug|x64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Debug|x64.Build.0 = Debug|x64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Release|ARM64.ActiveCfg = Release|ARM64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Release|ARM64.Build.0 = Release|ARM64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Release|Win32.ActiveCfg = Release|Win32 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Release|Win32.Build.0 = Release|Win32 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Release|x64.ActiveCfg = Release|x64 - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {A4DEB4C3-85FB-401C-BEFD-469E0A10C041} - EndGlobalSection -EndGlobal diff --git a/TTProxy/TTProxy.v17.vcxproj b/TTProxy/TTProxy.v17.vcxproj deleted file mode 100644 index 3587efbb0..000000000 --- a/TTProxy/TTProxy.v17.vcxproj +++ /dev/null @@ -1,433 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB} - TTProxy - TTProxy - 10.0 - - - - DynamicLibrary - v143 - false - MultiByte - - - DynamicLibrary - v143 - false - MultiByte - - - DynamicLibrary - v143 - false - MultiByte - - - DynamicLibrary - v143 - false - MultiByte - - - DynamicLibrary - v143 - false - MultiByte - - - DynamicLibrary - v143 - false - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - false - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - false - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - false - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - true - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - true - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - true - TTXProxy - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Use - stdafx.h - Level3 - true - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - true - $(OutDir)$(ProjectName).lib - MachineX86 - - - true - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Use - stdafx.h - Level3 - true - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - true - $(OutDir)$(ProjectName).lib - - - true - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Use - stdafx.h - Level3 - true - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - true - $(OutDir)$(ProjectName).lib - - - true - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - Disabled - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Use - stdafx.h - Level3 - true - EditAndContinue - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - true - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - Disabled - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Use - stdafx.h - Level3 - true - EditAndContinue - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - $(OutDir)$(ProjectName).lib - false - - - true - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - Disabled - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Use - stdafx.h - Level3 - true - ProgramDatabase - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - $(OutDir)$(ProjectName).lib - false - - - true - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - true - true - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTProxy/TTProxy.v17.vcxproj.filters b/TTProxy/TTProxy.v17.vcxproj.filters deleted file mode 100644 index db27c396b..000000000 --- a/TTProxy/TTProxy.v17.vcxproj.filters +++ /dev/null @@ -1,118 +0,0 @@ - - - - - {3cd46c63-801a-45aa-88e0-52572525db2d} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {2a7e6b97-89c1-4fe1-abf6-cdd5617422b1} - h;hpp;hxx;hm;inl - - - {076290f0-a284-406f-9e4c-8425b4904132} - - - {f6ee589e-87d8-4a70-b138-b10962385824} - ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe - - - - - Source Files - - - Source Files - - - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - - - Source Files - - - \ No newline at end of file diff --git a/TTProxy/TTProxy.v18.slnx b/TTProxy/TTProxy.v18.slnx deleted file mode 100644 index a94fec085..000000000 --- a/TTProxy/TTProxy.v18.slnx +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/TTProxy/TTProxy.v18.vcxproj b/TTProxy/TTProxy.v18.vcxproj deleted file mode 100644 index 16380fc67..000000000 --- a/TTProxy/TTProxy.v18.vcxproj +++ /dev/null @@ -1,433 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {C4DE5FDF-DB00-4C73-9D4F-359BFCA3F2FB} - TTProxy - TTProxy - 10.0 - - - - DynamicLibrary - v145 - false - MultiByte - - - DynamicLibrary - v145 - false - MultiByte - - - DynamicLibrary - v145 - false - MultiByte - - - DynamicLibrary - v145 - false - MultiByte - - - DynamicLibrary - v145 - false - MultiByte - - - DynamicLibrary - v145 - false - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - false - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - false - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - false - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - true - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - true - TTXProxy - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - true - TTXProxy - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Use - stdafx.h - Level3 - true - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - true - $(OutDir)$(ProjectName).lib - MachineX86 - - - true - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Use - stdafx.h - Level3 - true - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - true - $(OutDir)$(ProjectName).lib - - - true - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Use - stdafx.h - Level3 - true - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - true - $(OutDir)$(ProjectName).lib - - - true - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - Disabled - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Use - stdafx.h - Level3 - true - EditAndContinue - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - true - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - Disabled - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Use - stdafx.h - Level3 - true - EditAndContinue - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - $(OutDir)$(ProjectName).lib - false - - - true - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - Disabled - $(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\teraterm\common;YCL\include;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTX_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Use - stdafx.h - Level3 - true - ProgramDatabase - /D_CRT_SECURE_NO_DEPRECATE /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - - - common_static.lib;ws2_32.lib;ttpcmn.lib;version.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - TTX.def - true - $(OutDir)$(ProjectName).lib - false - - - true - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - true - true - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTProxy/TTProxy.v18.vcxproj.filters b/TTProxy/TTProxy.v18.vcxproj.filters deleted file mode 100644 index db27c396b..000000000 --- a/TTProxy/TTProxy.v18.vcxproj.filters +++ /dev/null @@ -1,118 +0,0 @@ - - - - - {3cd46c63-801a-45aa-88e0-52572525db2d} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {2a7e6b97-89c1-4fe1-abf6-cdd5617422b1} - h;hpp;hxx;hm;inl - - - {076290f0-a284-406f-9e4c-8425b4904132} - - - {f6ee589e-87d8-4a70-b138-b10962385824} - ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe - - - - - Source Files - - - Source Files - - - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - YCL - - - - - Source Files - - - \ No newline at end of file diff --git a/TTXKanjiMenu/ttxkanjimenu.v16.sln b/TTXKanjiMenu/ttxkanjimenu.v16.sln deleted file mode 100644 index 59798b05e..000000000 --- a/TTXKanjiMenu/ttxkanjimenu.v16.sln +++ /dev/null @@ -1,34 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.28803.156 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttxkanjimenu", "ttxkanjimenu.v16.vcxproj", "{DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Debug|ARM64.Build.0 = Debug|ARM64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Debug|Win32.ActiveCfg = Debug|Win32 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Debug|Win32.Build.0 = Debug|Win32 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Debug|x64.ActiveCfg = Debug|x64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Debug|x64.Build.0 = Debug|x64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Release|ARM64.ActiveCfg = Release|ARM64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Release|ARM64.Build.0 = Release|ARM64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Release|Win32.ActiveCfg = Release|Win32 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Release|Win32.Build.0 = Release|Win32 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Release|x64.ActiveCfg = Release|x64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/TTXKanjiMenu/ttxkanjimenu.v16.vcxproj b/TTXKanjiMenu/ttxkanjimenu.v16.vcxproj deleted file mode 100644 index 32395e1b7..000000000 --- a/TTXKanjiMenu/ttxkanjimenu.v16.vcxproj +++ /dev/null @@ -1,282 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7} - ttxkanjimenu - Win32Proj - ttxkanjimenu - 10.0 - - - - DynamicLibrary - v142 - MultiByte - true - - - DynamicLibrary - v142 - MultiByte - true - - - DynamicLibrary - v142 - MultiByte - true - - - DynamicLibrary - v142 - MultiByte - - - DynamicLibrary - v142 - MultiByte - - - DynamicLibrary - v142 - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - MachineX86 - false - - - $(SolutionDir)..\teraterm\common - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - false - - - $(SolutionDir)..\teraterm\common - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - false - - - $(SolutionDir)..\teraterm\common - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - true - true - MachineX86 - - - $(SolutionDir)..\teraterm\common - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - true - true - - - $(SolutionDir)..\teraterm\common - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - true - true - - - $(SolutionDir)..\teraterm\common - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXKanjiMenu/ttxkanjimenu.v16.vcxproj.filters b/TTXKanjiMenu/ttxkanjimenu.v16.vcxproj.filters deleted file mode 100644 index 2f0e7964f..000000000 --- a/TTXKanjiMenu/ttxkanjimenu.v16.vcxproj.filters +++ /dev/null @@ -1,35 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/TTXKanjiMenu/ttxkanjimenu.v17.sln b/TTXKanjiMenu/ttxkanjimenu.v17.sln deleted file mode 100644 index 8b81a0cc8..000000000 --- a/TTXKanjiMenu/ttxkanjimenu.v17.sln +++ /dev/null @@ -1,34 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.14.36310.24 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttxkanjimenu", "ttxkanjimenu.v17.vcxproj", "{DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Debug|ARM64.Build.0 = Debug|ARM64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Debug|Win32.ActiveCfg = Debug|Win32 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Debug|Win32.Build.0 = Debug|Win32 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Debug|x64.ActiveCfg = Debug|x64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Debug|x64.Build.0 = Debug|x64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Release|ARM64.ActiveCfg = Release|ARM64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Release|ARM64.Build.0 = Release|ARM64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Release|Win32.ActiveCfg = Release|Win32 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Release|Win32.Build.0 = Release|Win32 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Release|x64.ActiveCfg = Release|x64 - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/TTXKanjiMenu/ttxkanjimenu.v17.vcxproj b/TTXKanjiMenu/ttxkanjimenu.v17.vcxproj deleted file mode 100644 index 6486ccf6e..000000000 --- a/TTXKanjiMenu/ttxkanjimenu.v17.vcxproj +++ /dev/null @@ -1,282 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7} - ttxkanjimenu - Win32Proj - ttxkanjimenu - 10.0 - - - - DynamicLibrary - v143 - MultiByte - true - - - DynamicLibrary - v143 - MultiByte - true - - - DynamicLibrary - v143 - MultiByte - true - - - DynamicLibrary - v143 - MultiByte - - - DynamicLibrary - v143 - MultiByte - - - DynamicLibrary - v143 - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - MachineX86 - false - - - $(SolutionDir)..\teraterm\common - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - false - - - $(SolutionDir)..\teraterm\common - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - false - - - $(SolutionDir)..\teraterm\common - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - true - true - MachineX86 - - - $(SolutionDir)..\teraterm\common - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - true - true - - - $(SolutionDir)..\teraterm\common - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - true - true - - - $(SolutionDir)..\teraterm\common - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXKanjiMenu/ttxkanjimenu.v17.vcxproj.filters b/TTXKanjiMenu/ttxkanjimenu.v17.vcxproj.filters deleted file mode 100644 index 2f0e7964f..000000000 --- a/TTXKanjiMenu/ttxkanjimenu.v17.vcxproj.filters +++ /dev/null @@ -1,35 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/TTXKanjiMenu/ttxkanjimenu.v18.slnx b/TTXKanjiMenu/ttxkanjimenu.v18.slnx deleted file mode 100644 index 4b9fbb110..000000000 --- a/TTXKanjiMenu/ttxkanjimenu.v18.slnx +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/TTXKanjiMenu/ttxkanjimenu.v18.vcxproj b/TTXKanjiMenu/ttxkanjimenu.v18.vcxproj deleted file mode 100644 index 20381f772..000000000 --- a/TTXKanjiMenu/ttxkanjimenu.v18.vcxproj +++ /dev/null @@ -1,282 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {DCCE3462-94BD-49E8-8DC9-4EEAC23C04B7} - ttxkanjimenu - Win32Proj - ttxkanjimenu - 10.0 - - - - DynamicLibrary - v145 - MultiByte - true - - - DynamicLibrary - v145 - MultiByte - true - - - DynamicLibrary - v145 - MultiByte - true - - - DynamicLibrary - v145 - MultiByte - - - DynamicLibrary - v145 - MultiByte - - - DynamicLibrary - v145 - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - MachineX86 - false - - - $(SolutionDir)..\teraterm\common - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - false - - - $(SolutionDir)..\teraterm\common - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - false - - - $(SolutionDir)..\teraterm\common - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - true - true - MachineX86 - - - $(SolutionDir)..\teraterm\common - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - true - true - - - $(SolutionDir)..\teraterm\common - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;TTXENCODE_EXPORTS;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - Windows - true - true - - - $(SolutionDir)..\teraterm\common - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXKanjiMenu/ttxkanjimenu.v18.vcxproj.filters b/TTXKanjiMenu/ttxkanjimenu.v18.vcxproj.filters deleted file mode 100644 index 2f0e7964f..000000000 --- a/TTXKanjiMenu/ttxkanjimenu.v18.vcxproj.filters +++ /dev/null @@ -1,35 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v16.vcxproj b/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v16.vcxproj deleted file mode 100644 index 82d24bf4e..000000000 --- a/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v16.vcxproj +++ /dev/null @@ -1,261 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6} - TTXAlwaysOnTop - Win32Proj - TTXAlwaysOnTop - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v16.vcxproj.filters b/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v16.vcxproj.filters deleted file mode 100644 index e67e0b3d1..000000000 --- a/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v16.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {3de8b3b0-0e46-470e-8b42-34e7dc070906} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v17.vcxproj b/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v17.vcxproj deleted file mode 100644 index 44867c15d..000000000 --- a/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v17.vcxproj +++ /dev/null @@ -1,261 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6} - TTXAlwaysOnTop - Win32Proj - TTXAlwaysOnTop - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v17.vcxproj.filters b/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v17.vcxproj.filters deleted file mode 100644 index e67e0b3d1..000000000 --- a/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v17.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {3de8b3b0-0e46-470e-8b42-34e7dc070906} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v18.vcxproj b/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v18.vcxproj deleted file mode 100644 index a594b95a9..000000000 --- a/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v18.vcxproj +++ /dev/null @@ -1,261 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6} - TTXAlwaysOnTop - Win32Proj - TTXAlwaysOnTop - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v18.vcxproj.filters b/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v18.vcxproj.filters deleted file mode 100644 index e67e0b3d1..000000000 --- a/TTXSamples/TTXAlwaysOnTop/TTXAlwaysOnTop.v18.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {3de8b3b0-0e46-470e-8b42-34e7dc070906} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v16.vcxproj b/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v16.vcxproj deleted file mode 100644 index 238378999..000000000 --- a/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v16.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {25709A86-E6B8-4CDA-906C-02D935E05978} - TTXCallSysMenu - Win32Proj - TTXCallSysMenu - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v16.vcxproj.filters b/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v16.vcxproj.filters deleted file mode 100644 index 2cb742bb3..000000000 --- a/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v16.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {7db37478-ecb8-4585-bc40-626409df0a4c} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v17.vcxproj b/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v17.vcxproj deleted file mode 100644 index c9462848e..000000000 --- a/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v17.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {25709A86-E6B8-4CDA-906C-02D935E05978} - TTXCallSysMenu - Win32Proj - TTXCallSysMenu - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v17.vcxproj.filters b/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v17.vcxproj.filters deleted file mode 100644 index 2cb742bb3..000000000 --- a/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v17.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {7db37478-ecb8-4585-bc40-626409df0a4c} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v18.vcxproj b/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v18.vcxproj deleted file mode 100644 index 69669eaea..000000000 --- a/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v18.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {25709A86-E6B8-4CDA-906C-02D935E05978} - TTXCallSysMenu - Win32Proj - TTXCallSysMenu - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v18.vcxproj.filters b/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v18.vcxproj.filters deleted file mode 100644 index 2cb742bb3..000000000 --- a/TTXSamples/TTXCallSysMenu/TTXCallSysMenu.v18.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {7db37478-ecb8-4585-bc40-626409df0a4c} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v16.vcxproj b/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v16.vcxproj deleted file mode 100644 index b0e212e67..000000000 --- a/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v16.vcxproj +++ /dev/null @@ -1,287 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {56807EC2-1793-438F-942E-DE7F09283971} - TTXChangeFontSize - Win32Proj - TTXChangeFontSize - - - - DynamicLibrary - false - v142 - NotSet - true - - - DynamicLibrary - false - v142 - NotSet - true - - - DynamicLibrary - false - v142 - NotSet - true - - - DynamicLibrary - true - v142 - NotSet - - - DynamicLibrary - true - v142 - NotSet - - - DynamicLibrary - true - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>16.0.30804.86 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v16.vcxproj.filters b/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v16.vcxproj.filters deleted file mode 100644 index b937cc244..000000000 --- a/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v16.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {416a7ffa-62a6-4543-b9c0-10797c7fde23} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v17.vcxproj b/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v17.vcxproj deleted file mode 100644 index 71a492014..000000000 --- a/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v17.vcxproj +++ /dev/null @@ -1,287 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {56807EC2-1793-438F-942E-DE7F09283971} - TTXChangeFontSize - Win32Proj - TTXChangeFontSize - - - - DynamicLibrary - false - v143 - NotSet - true - - - DynamicLibrary - false - v143 - NotSet - true - - - DynamicLibrary - false - v143 - NotSet - true - - - DynamicLibrary - true - v143 - NotSet - - - DynamicLibrary - true - v143 - NotSet - - - DynamicLibrary - true - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>16.0.30804.86 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v17.vcxproj.filters b/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v17.vcxproj.filters deleted file mode 100644 index b937cc244..000000000 --- a/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v17.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {416a7ffa-62a6-4543-b9c0-10797c7fde23} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v18.vcxproj b/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v18.vcxproj deleted file mode 100644 index 2bbf65e4c..000000000 --- a/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v18.vcxproj +++ /dev/null @@ -1,287 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {56807EC2-1793-438F-942E-DE7F09283971} - TTXChangeFontSize - Win32Proj - TTXChangeFontSize - - - - DynamicLibrary - false - v145 - NotSet - true - - - DynamicLibrary - false - v145 - NotSet - true - - - DynamicLibrary - false - v145 - NotSet - true - - - DynamicLibrary - true - v145 - NotSet - - - DynamicLibrary - true - v145 - NotSet - - - DynamicLibrary - true - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>16.0.30804.86 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;user32.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v18.vcxproj.filters b/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v18.vcxproj.filters deleted file mode 100644 index b937cc244..000000000 --- a/TTXSamples/TTXChangeFontSize/TTXChangeFontSize.v18.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {416a7ffa-62a6-4543-b9c0-10797c7fde23} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v16.vcxproj b/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v16.vcxproj deleted file mode 100644 index 366ce9426..000000000 --- a/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v16.vcxproj +++ /dev/null @@ -1,272 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - TTXCheckUpdate - Win32Proj - TTXCheckUpdate - 10.0 - {937DFA65-5709-4643-B778-482C15DEC581} - - - - DynamicLibrary - v142 - MultiByte - true - - - DynamicLibrary - v142 - MultiByte - true - - - DynamicLibrary - v142 - MultiByte - true - - - DynamicLibrary - v142 - MultiByte - - - DynamicLibrary - v142 - MultiByte - - - DynamicLibrary - v142 - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v16.vcxproj.filters b/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v16.vcxproj.filters deleted file mode 100644 index 4525cd3b4..000000000 --- a/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v16.vcxproj.filters +++ /dev/null @@ -1,56 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {7f6c33d3-32cc-4cec-be30-1f30eefcde37} - - - {eba3832e-0743-46e0-bc55-5de2f37143ae} - - - - - Source Files - - - Source Files - - - cJSON - - - - - Header Files - - - common - - - common - - - common - - - cJSON - - - - - Resource Files - - - \ No newline at end of file diff --git a/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v17.vcxproj b/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v17.vcxproj deleted file mode 100644 index b86cd5851..000000000 --- a/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v17.vcxproj +++ /dev/null @@ -1,272 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - TTXCheckUpdate - Win32Proj - TTXCheckUpdate - 10.0 - {937DFA65-5709-4643-B778-482C15DEC581} - - - - DynamicLibrary - v143 - MultiByte - true - - - DynamicLibrary - v143 - MultiByte - true - - - DynamicLibrary - v143 - MultiByte - true - - - DynamicLibrary - v143 - MultiByte - - - DynamicLibrary - v143 - MultiByte - - - DynamicLibrary - v143 - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v17.vcxproj.filters b/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v17.vcxproj.filters deleted file mode 100644 index 4525cd3b4..000000000 --- a/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v17.vcxproj.filters +++ /dev/null @@ -1,56 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {7f6c33d3-32cc-4cec-be30-1f30eefcde37} - - - {eba3832e-0743-46e0-bc55-5de2f37143ae} - - - - - Source Files - - - Source Files - - - cJSON - - - - - Header Files - - - common - - - common - - - common - - - cJSON - - - - - Resource Files - - - \ No newline at end of file diff --git a/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v18.vcxproj b/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v18.vcxproj deleted file mode 100644 index ecf28ae6d..000000000 --- a/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v18.vcxproj +++ /dev/null @@ -1,272 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - TTXCheckUpdate - Win32Proj - TTXCheckUpdate - 10.0 - {937DFA65-5709-4643-B778-482C15DEC581} - - - - DynamicLibrary - v145 - MultiByte - true - - - DynamicLibrary - v145 - MultiByte - true - - - DynamicLibrary - v145 - MultiByte - true - - - DynamicLibrary - v145 - MultiByte - - - DynamicLibrary - v145 - MultiByte - - - DynamicLibrary - v145 - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\cJSON;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;CJSON_HIDE_SYMBOLS;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;Wininet.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v18.vcxproj.filters b/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v18.vcxproj.filters deleted file mode 100644 index 4525cd3b4..000000000 --- a/TTXSamples/TTXCheckUpdate/TTXCheckUpdate.v18.vcxproj.filters +++ /dev/null @@ -1,56 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {7f6c33d3-32cc-4cec-be30-1f30eefcde37} - - - {eba3832e-0743-46e0-bc55-5de2f37143ae} - - - - - Source Files - - - Source Files - - - cJSON - - - - - Header Files - - - common - - - common - - - common - - - cJSON - - - - - Resource Files - - - \ No newline at end of file diff --git a/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v16.vcxproj b/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v16.vcxproj deleted file mode 100644 index 83c7bd6b2..000000000 --- a/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v16.vcxproj +++ /dev/null @@ -1,261 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {EE8BFC38-7000-42F1-BBC3-17F19855918A} - TTXCommandLineOpt - Win32Proj - TTXCommandLineOpt - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v16.vcxproj.filters b/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v16.vcxproj.filters deleted file mode 100644 index fe4cfb29d..000000000 --- a/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v16.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {ea93460b-20a9-4d07-acd5-813091583716} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v17.vcxproj b/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v17.vcxproj deleted file mode 100644 index 46201fe96..000000000 --- a/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v17.vcxproj +++ /dev/null @@ -1,261 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {EE8BFC38-7000-42F1-BBC3-17F19855918A} - TTXCommandLineOpt - Win32Proj - TTXCommandLineOpt - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v17.vcxproj.filters b/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v17.vcxproj.filters deleted file mode 100644 index fe4cfb29d..000000000 --- a/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v17.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {ea93460b-20a9-4d07-acd5-813091583716} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v18.vcxproj b/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v18.vcxproj deleted file mode 100644 index 48ed17683..000000000 --- a/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v18.vcxproj +++ /dev/null @@ -1,261 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {EE8BFC38-7000-42F1-BBC3-17F19855918A} - TTXCommandLineOpt - Win32Proj - TTXCommandLineOpt - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v18.vcxproj.filters b/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v18.vcxproj.filters deleted file mode 100644 index fe4cfb29d..000000000 --- a/TTXSamples/TTXCommandLineOpt/TTXCommandLineOpt.v18.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {ea93460b-20a9-4d07-acd5-813091583716} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v16.vcxproj b/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v16.vcxproj deleted file mode 100644 index 7553f3316..000000000 --- a/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v16.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {2B2B8D6E-4A84-49DD-8291-46172FCE422A} - TTXCopyIniFile - Win32Proj - TTXCopyIniFile - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v16.vcxproj.filters b/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v16.vcxproj.filters deleted file mode 100644 index 84ca9a718..000000000 --- a/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v16.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {874b45ff-d6e1-41fa-9990-dc82e1fa2c39} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v17.vcxproj b/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v17.vcxproj deleted file mode 100644 index a1c00f488..000000000 --- a/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v17.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {2B2B8D6E-4A84-49DD-8291-46172FCE422A} - TTXCopyIniFile - Win32Proj - TTXCopyIniFile - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v17.vcxproj.filters b/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v17.vcxproj.filters deleted file mode 100644 index 84ca9a718..000000000 --- a/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v17.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {874b45ff-d6e1-41fa-9990-dc82e1fa2c39} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v18.vcxproj b/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v18.vcxproj deleted file mode 100644 index bd6618ba2..000000000 --- a/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v18.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {2B2B8D6E-4A84-49DD-8291-46172FCE422A} - TTXCopyIniFile - Win32Proj - TTXCopyIniFile - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v18.vcxproj.filters b/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v18.vcxproj.filters deleted file mode 100644 index 84ca9a718..000000000 --- a/TTXSamples/TTXCopyIniFile/TTXCopyIniFile.v18.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {874b45ff-d6e1-41fa-9990-dc82e1fa2c39} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v16.vcxproj b/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v16.vcxproj deleted file mode 100644 index 165b1885c..000000000 --- a/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v16.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8} - TTXFixedWinSize - Win32Proj - TTXFixedWinSize - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v16.vcxproj.filters b/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v16.vcxproj.filters deleted file mode 100644 index df0239758..000000000 --- a/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v16.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {c85cfa6a-7901-487a-827f-eab5a026442e} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v17.vcxproj b/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v17.vcxproj deleted file mode 100644 index 53e8d12ae..000000000 --- a/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v17.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8} - TTXFixedWinSize - Win32Proj - TTXFixedWinSize - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v17.vcxproj.filters b/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v17.vcxproj.filters deleted file mode 100644 index df0239758..000000000 --- a/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v17.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {c85cfa6a-7901-487a-827f-eab5a026442e} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v18.vcxproj b/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v18.vcxproj deleted file mode 100644 index 31e8fc750..000000000 --- a/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v18.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8} - TTXFixedWinSize - Win32Proj - TTXFixedWinSize - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v18.vcxproj.filters b/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v18.vcxproj.filters deleted file mode 100644 index df0239758..000000000 --- a/TTXSamples/TTXFixedWinSize/TTXFixedWinSize.v18.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {c85cfa6a-7901-487a-827f-eab5a026442e} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXKcodeChange/TTXKcodeChange.v16.vcxproj b/TTXSamples/TTXKcodeChange/TTXKcodeChange.v16.vcxproj deleted file mode 100644 index 190387217..000000000 --- a/TTXSamples/TTXKcodeChange/TTXKcodeChange.v16.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25} - TTXKcodeChange - Win32Proj - TTXKcodeChange - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXKcodeChange/TTXKcodeChange.v16.vcxproj.filters b/TTXSamples/TTXKcodeChange/TTXKcodeChange.v16.vcxproj.filters deleted file mode 100644 index 36775a49c..000000000 --- a/TTXSamples/TTXKcodeChange/TTXKcodeChange.v16.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {61de082d-3825-47ff-b56b-2afbe6cb421d} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXKcodeChange/TTXKcodeChange.v17.vcxproj b/TTXSamples/TTXKcodeChange/TTXKcodeChange.v17.vcxproj deleted file mode 100644 index cd20fb045..000000000 --- a/TTXSamples/TTXKcodeChange/TTXKcodeChange.v17.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25} - TTXKcodeChange - Win32Proj - TTXKcodeChange - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXKcodeChange/TTXKcodeChange.v17.vcxproj.filters b/TTXSamples/TTXKcodeChange/TTXKcodeChange.v17.vcxproj.filters deleted file mode 100644 index 36775a49c..000000000 --- a/TTXSamples/TTXKcodeChange/TTXKcodeChange.v17.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {61de082d-3825-47ff-b56b-2afbe6cb421d} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXKcodeChange/TTXKcodeChange.v18.vcxproj b/TTXSamples/TTXKcodeChange/TTXKcodeChange.v18.vcxproj deleted file mode 100644 index 126bb004c..000000000 --- a/TTXSamples/TTXKcodeChange/TTXKcodeChange.v18.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25} - TTXKcodeChange - Win32Proj - TTXKcodeChange - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXKcodeChange/TTXKcodeChange.v18.vcxproj.filters b/TTXSamples/TTXKcodeChange/TTXKcodeChange.v18.vcxproj.filters deleted file mode 100644 index 36775a49c..000000000 --- a/TTXSamples/TTXKcodeChange/TTXKcodeChange.v18.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {61de082d-3825-47ff-b56b-2afbe6cb421d} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v16.vcxproj b/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v16.vcxproj deleted file mode 100644 index 5f7204d6c..000000000 --- a/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v16.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {80BE71D1-BEA3-4A5D-8F13-362D6364892D} - TTXOutputBuffering - Win32Proj - TTXOutputBuffering - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v16.vcxproj.filters b/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v16.vcxproj.filters deleted file mode 100644 index e72aefda7..000000000 --- a/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v16.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {eac98687-8494-4f5a-9a22-74285b3cb27e} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v17.vcxproj b/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v17.vcxproj deleted file mode 100644 index a99be3d4b..000000000 --- a/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v17.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {80BE71D1-BEA3-4A5D-8F13-362D6364892D} - TTXOutputBuffering - Win32Proj - TTXOutputBuffering - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v17.vcxproj.filters b/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v17.vcxproj.filters deleted file mode 100644 index e72aefda7..000000000 --- a/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v17.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {eac98687-8494-4f5a-9a22-74285b3cb27e} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v18.vcxproj b/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v18.vcxproj deleted file mode 100644 index c0a6b3c09..000000000 --- a/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v18.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {80BE71D1-BEA3-4A5D-8F13-362D6364892D} - TTXOutputBuffering - Win32Proj - TTXOutputBuffering - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v18.vcxproj.filters b/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v18.vcxproj.filters deleted file mode 100644 index e72aefda7..000000000 --- a/TTXSamples/TTXOutputBuffering/TTXOutputBuffering.v18.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {eac98687-8494-4f5a-9a22-74285b3cb27e} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v16.vcxproj b/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v16.vcxproj deleted file mode 100644 index f3ff9d3dd..000000000 --- a/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v16.vcxproj +++ /dev/null @@ -1,273 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {3C656364-FAEA-41D2-B227-52187D3C2529} - TTXRecurringCommand - Win32Proj - TTXRecurringCommand - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v16.vcxproj.filters b/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v16.vcxproj.filters deleted file mode 100644 index 70a6b1fbe..000000000 --- a/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v16.vcxproj.filters +++ /dev/null @@ -1,43 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {33cf655f-cf52-4333-b6c4-58fa615a79f2} - - - - - Source Files - - - - - Header Files - - - - - Resource Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v17.vcxproj b/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v17.vcxproj deleted file mode 100644 index ab73fa578..000000000 --- a/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v17.vcxproj +++ /dev/null @@ -1,273 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {3C656364-FAEA-41D2-B227-52187D3C2529} - TTXRecurringCommand - Win32Proj - TTXRecurringCommand - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v17.vcxproj.filters b/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v17.vcxproj.filters deleted file mode 100644 index 70a6b1fbe..000000000 --- a/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v17.vcxproj.filters +++ /dev/null @@ -1,43 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {33cf655f-cf52-4333-b6c4-58fa615a79f2} - - - - - Source Files - - - - - Header Files - - - - - Resource Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v18.vcxproj b/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v18.vcxproj deleted file mode 100644 index 1f333c217..000000000 --- a/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v18.vcxproj +++ /dev/null @@ -1,273 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {3C656364-FAEA-41D2-B227-52187D3C2529} - TTXRecurringCommand - Win32Proj - TTXRecurringCommand - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v18.vcxproj.filters b/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v18.vcxproj.filters deleted file mode 100644 index 70a6b1fbe..000000000 --- a/TTXSamples/TTXRecurringCommand/TTXRecurringCommand.v18.vcxproj.filters +++ /dev/null @@ -1,43 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {33cf655f-cf52-4333-b6c4-58fa615a79f2} - - - - - Source Files - - - - - Header Files - - - - - Resource Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXResizeMenu/TTXResizeMenu.v16.vcxproj b/TTXSamples/TTXResizeMenu/TTXResizeMenu.v16.vcxproj deleted file mode 100644 index f9d0041c4..000000000 --- a/TTXSamples/TTXResizeMenu/TTXResizeMenu.v16.vcxproj +++ /dev/null @@ -1,267 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67} - TTXResizeMenu - Win32Proj - TTXResizeMenu - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXResizeMenu/TTXResizeMenu.v16.vcxproj.filters b/TTXSamples/TTXResizeMenu/TTXResizeMenu.v16.vcxproj.filters deleted file mode 100644 index 8d5cd3689..000000000 --- a/TTXSamples/TTXResizeMenu/TTXResizeMenu.v16.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {bc141cd6-562f-4b1b-948c-94914a36ffac} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXResizeMenu/TTXResizeMenu.v17.vcxproj b/TTXSamples/TTXResizeMenu/TTXResizeMenu.v17.vcxproj deleted file mode 100644 index 4fc69abca..000000000 --- a/TTXSamples/TTXResizeMenu/TTXResizeMenu.v17.vcxproj +++ /dev/null @@ -1,267 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67} - TTXResizeMenu - Win32Proj - TTXResizeMenu - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXResizeMenu/TTXResizeMenu.v17.vcxproj.filters b/TTXSamples/TTXResizeMenu/TTXResizeMenu.v17.vcxproj.filters deleted file mode 100644 index 8d5cd3689..000000000 --- a/TTXSamples/TTXResizeMenu/TTXResizeMenu.v17.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {bc141cd6-562f-4b1b-948c-94914a36ffac} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXResizeMenu/TTXResizeMenu.v18.vcxproj b/TTXSamples/TTXResizeMenu/TTXResizeMenu.v18.vcxproj deleted file mode 100644 index 6bd4f0362..000000000 --- a/TTXSamples/TTXResizeMenu/TTXResizeMenu.v18.vcxproj +++ /dev/null @@ -1,267 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67} - TTXResizeMenu - Win32Proj - TTXResizeMenu - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXResizeMenu/TTXResizeMenu.v18.vcxproj.filters b/TTXSamples/TTXResizeMenu/TTXResizeMenu.v18.vcxproj.filters deleted file mode 100644 index 8d5cd3689..000000000 --- a/TTXSamples/TTXResizeMenu/TTXResizeMenu.v18.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {bc141cd6-562f-4b1b-948c-94914a36ffac} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXResizeWin/TTXResizeWin.v16.vcxproj b/TTXSamples/TTXResizeWin/TTXResizeWin.v16.vcxproj deleted file mode 100644 index ab6da47a5..000000000 --- a/TTXSamples/TTXResizeWin/TTXResizeWin.v16.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {11EF5960-4922-49DC-9E64-B0845FC7C88C} - TTXResizeWin - Win32Proj - TTXResizeWin - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXResizeWin/TTXResizeWin.v16.vcxproj.filters b/TTXSamples/TTXResizeWin/TTXResizeWin.v16.vcxproj.filters deleted file mode 100644 index 642c11bd5..000000000 --- a/TTXSamples/TTXResizeWin/TTXResizeWin.v16.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {b55f30ea-c34a-4cf2-a10f-8389a7654919} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXResizeWin/TTXResizeWin.v17.vcxproj b/TTXSamples/TTXResizeWin/TTXResizeWin.v17.vcxproj deleted file mode 100644 index 24f2f9bf8..000000000 --- a/TTXSamples/TTXResizeWin/TTXResizeWin.v17.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {11EF5960-4922-49DC-9E64-B0845FC7C88C} - TTXResizeWin - Win32Proj - TTXResizeWin - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXResizeWin/TTXResizeWin.v17.vcxproj.filters b/TTXSamples/TTXResizeWin/TTXResizeWin.v17.vcxproj.filters deleted file mode 100644 index 642c11bd5..000000000 --- a/TTXSamples/TTXResizeWin/TTXResizeWin.v17.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {b55f30ea-c34a-4cf2-a10f-8389a7654919} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXResizeWin/TTXResizeWin.v18.vcxproj b/TTXSamples/TTXResizeWin/TTXResizeWin.v18.vcxproj deleted file mode 100644 index 5176fb8d5..000000000 --- a/TTXSamples/TTXResizeWin/TTXResizeWin.v18.vcxproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {11EF5960-4922-49DC-9E64-B0845FC7C88C} - TTXResizeWin - Win32Proj - TTXResizeWin - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXResizeWin/TTXResizeWin.v18.vcxproj.filters b/TTXSamples/TTXResizeWin/TTXResizeWin.v18.vcxproj.filters deleted file mode 100644 index 642c11bd5..000000000 --- a/TTXSamples/TTXResizeWin/TTXResizeWin.v18.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {b55f30ea-c34a-4cf2-a10f-8389a7654919} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXSamples.v16.sln b/TTXSamples/TTXSamples.v16.sln deleted file mode 100644 index 4cf29afbc..000000000 --- a/TTXSamples/TTXSamples.v16.sln +++ /dev/null @@ -1,273 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.28803.156 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXAlwaysOnTop", "TTXAlwaysOnTop\TTXAlwaysOnTop.v16.vcxproj", "{E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXResizeWin", "TTXResizeWin\TTXResizeWin.v16.vcxproj", "{11EF5960-4922-49DC-9E64-B0845FC7C88C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXResizeMenu", "TTXResizeMenu\TTXResizeMenu.v16.vcxproj", "{4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXFixedWinSize", "TTXFixedWinSize\TTXFixedWinSize.v16.vcxproj", "{3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXttyrec", "TTXttyrec\TTXttyrec.v16.vcxproj", "{5798E37E-0428-457E-A652-EE0A75130327}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXttyplay", "TTXttyrec\TTXttyplay.v16.vcxproj", "{3181E887-2183-4FB8-84CC-CA5B4D48BC71}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXtest", "ttxtest\TTXtest.v16.vcxproj", "{9E20E276-1905-44AE-BC67-C1A1F3C42135}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXKcodeChange", "TTXKcodeChange\TTXKcodeChange.v16.vcxproj", "{2E487F50-84E4-404D-A7E1-F9FA4A72BC25}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXViewMode", "TTXViewMode\TTXViewMode.v16.vcxproj", "{2296FB66-3FA4-4136-8252-ABECEEAC2D70}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXCopyIniFile", "TTXCopyIniFile\TTXCopyIniFile.v16.vcxproj", "{2B2B8D6E-4A84-49DD-8291-46172FCE422A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXCallSysMenu", "TTXCallSysMenu\TTXCallSysMenu.v16.vcxproj", "{25709A86-E6B8-4CDA-906C-02D935E05978}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXCommandLineOpt", "TTXCommandLineOpt\TTXCommandLineOpt.v16.vcxproj", "{EE8BFC38-7000-42F1-BBC3-17F19855918A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXRecurringCommand", "TTXRecurringCommand\TTXRecurringCommand.v16.vcxproj", "{3C656364-FAEA-41D2-B227-52187D3C2529}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXShowCommandLine", "TTXShowCommandLine\TTXShowCommandLine.v16.vcxproj", "{80ED9927-27F9-473A-802C-FB10DEB5ECC6}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXOutputBuffering", "TTXOutputBuffering\TTXOutputBuffering.v16.vcxproj", "{80BE71D1-BEA3-4A5D-8F13-362D6364892D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXCheckUpdate", "TTXCheckUpdate\TTXCheckUpdate.v16.vcxproj", "{937DFA65-5709-4643-B778-482C15DEC581}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXChangeFontSize", "TTXChangeFontSize\TTXChangeFontSize.v16.vcxproj", "{56807EC2-1793-438F-942E-DE7F09283971}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Debug|ARM64.Build.0 = Debug|ARM64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Debug|Win32.ActiveCfg = Debug|Win32 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Debug|Win32.Build.0 = Debug|Win32 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Debug|x64.ActiveCfg = Debug|x64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Debug|x64.Build.0 = Debug|x64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Release|ARM64.ActiveCfg = Release|ARM64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Release|ARM64.Build.0 = Release|ARM64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Release|Win32.ActiveCfg = Release|Win32 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Release|Win32.Build.0 = Release|Win32 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Release|x64.ActiveCfg = Release|x64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Release|x64.Build.0 = Release|x64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Debug|ARM64.Build.0 = Debug|ARM64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Debug|Win32.ActiveCfg = Debug|Win32 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Debug|Win32.Build.0 = Debug|Win32 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Debug|x64.ActiveCfg = Debug|x64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Debug|x64.Build.0 = Debug|x64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Release|ARM64.ActiveCfg = Release|ARM64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Release|ARM64.Build.0 = Release|ARM64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Release|Win32.ActiveCfg = Release|Win32 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Release|Win32.Build.0 = Release|Win32 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Release|x64.ActiveCfg = Release|x64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Release|x64.Build.0 = Release|x64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Debug|ARM64.Build.0 = Debug|ARM64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Debug|Win32.ActiveCfg = Debug|Win32 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Debug|Win32.Build.0 = Debug|Win32 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Debug|x64.ActiveCfg = Debug|x64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Debug|x64.Build.0 = Debug|x64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Release|ARM64.ActiveCfg = Release|ARM64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Release|ARM64.Build.0 = Release|ARM64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Release|Win32.ActiveCfg = Release|Win32 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Release|Win32.Build.0 = Release|Win32 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Release|x64.ActiveCfg = Release|x64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Release|x64.Build.0 = Release|x64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Debug|ARM64.Build.0 = Debug|ARM64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Debug|Win32.ActiveCfg = Debug|Win32 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Debug|Win32.Build.0 = Debug|Win32 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Debug|x64.ActiveCfg = Debug|x64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Debug|x64.Build.0 = Debug|x64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Release|ARM64.ActiveCfg = Release|ARM64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Release|ARM64.Build.0 = Release|ARM64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Release|Win32.ActiveCfg = Release|Win32 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Release|Win32.Build.0 = Release|Win32 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Release|x64.ActiveCfg = Release|x64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Release|x64.Build.0 = Release|x64 - {5798E37E-0428-457E-A652-EE0A75130327}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {5798E37E-0428-457E-A652-EE0A75130327}.Debug|ARM64.Build.0 = Debug|ARM64 - {5798E37E-0428-457E-A652-EE0A75130327}.Debug|Win32.ActiveCfg = Debug|Win32 - {5798E37E-0428-457E-A652-EE0A75130327}.Debug|Win32.Build.0 = Debug|Win32 - {5798E37E-0428-457E-A652-EE0A75130327}.Debug|x64.ActiveCfg = Debug|x64 - {5798E37E-0428-457E-A652-EE0A75130327}.Debug|x64.Build.0 = Debug|x64 - {5798E37E-0428-457E-A652-EE0A75130327}.Release|ARM64.ActiveCfg = Release|ARM64 - {5798E37E-0428-457E-A652-EE0A75130327}.Release|ARM64.Build.0 = Release|ARM64 - {5798E37E-0428-457E-A652-EE0A75130327}.Release|Win32.ActiveCfg = Release|Win32 - {5798E37E-0428-457E-A652-EE0A75130327}.Release|Win32.Build.0 = Release|Win32 - {5798E37E-0428-457E-A652-EE0A75130327}.Release|x64.ActiveCfg = Release|x64 - {5798E37E-0428-457E-A652-EE0A75130327}.Release|x64.Build.0 = Release|x64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Debug|ARM64.Build.0 = Debug|ARM64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Debug|Win32.ActiveCfg = Debug|Win32 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Debug|Win32.Build.0 = Debug|Win32 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Debug|x64.ActiveCfg = Debug|x64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Debug|x64.Build.0 = Debug|x64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Release|ARM64.ActiveCfg = Release|ARM64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Release|ARM64.Build.0 = Release|ARM64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Release|Win32.ActiveCfg = Release|Win32 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Release|Win32.Build.0 = Release|Win32 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Release|x64.ActiveCfg = Release|x64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Release|x64.Build.0 = Release|x64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Debug|ARM64.Build.0 = Debug|ARM64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Debug|Win32.ActiveCfg = Debug|Win32 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Debug|Win32.Build.0 = Debug|Win32 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Debug|x64.ActiveCfg = Debug|x64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Debug|x64.Build.0 = Debug|x64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Release|ARM64.ActiveCfg = Release|ARM64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Release|ARM64.Build.0 = Release|ARM64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Release|Win32.ActiveCfg = Release|Win32 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Release|Win32.Build.0 = Release|Win32 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Release|x64.ActiveCfg = Release|x64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Release|x64.Build.0 = Release|x64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Debug|ARM64.Build.0 = Debug|ARM64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Debug|Win32.ActiveCfg = Debug|Win32 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Debug|Win32.Build.0 = Debug|Win32 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Debug|x64.ActiveCfg = Debug|x64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Debug|x64.Build.0 = Debug|x64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Release|ARM64.ActiveCfg = Release|ARM64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Release|ARM64.Build.0 = Release|ARM64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Release|Win32.ActiveCfg = Release|Win32 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Release|Win32.Build.0 = Release|Win32 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Release|x64.ActiveCfg = Release|x64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Release|x64.Build.0 = Release|x64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Debug|ARM64.Build.0 = Debug|ARM64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Debug|Win32.ActiveCfg = Debug|Win32 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Debug|Win32.Build.0 = Debug|Win32 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Debug|x64.ActiveCfg = Debug|x64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Debug|x64.Build.0 = Debug|x64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Release|ARM64.ActiveCfg = Release|ARM64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Release|ARM64.Build.0 = Release|ARM64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Release|Win32.ActiveCfg = Release|Win32 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Release|Win32.Build.0 = Release|Win32 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Release|x64.ActiveCfg = Release|x64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Release|x64.Build.0 = Release|x64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Debug|ARM64.Build.0 = Debug|ARM64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Debug|Win32.ActiveCfg = Debug|Win32 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Debug|Win32.Build.0 = Debug|Win32 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Debug|x64.ActiveCfg = Debug|x64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Debug|x64.Build.0 = Debug|x64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Release|ARM64.ActiveCfg = Release|ARM64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Release|ARM64.Build.0 = Release|ARM64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Release|Win32.ActiveCfg = Release|Win32 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Release|Win32.Build.0 = Release|Win32 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Release|x64.ActiveCfg = Release|x64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Release|x64.Build.0 = Release|x64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Debug|ARM64.Build.0 = Debug|ARM64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Debug|Win32.ActiveCfg = Debug|Win32 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Debug|Win32.Build.0 = Debug|Win32 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Debug|x64.ActiveCfg = Debug|x64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Debug|x64.Build.0 = Debug|x64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Release|ARM64.ActiveCfg = Release|ARM64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Release|ARM64.Build.0 = Release|ARM64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Release|Win32.ActiveCfg = Release|Win32 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Release|Win32.Build.0 = Release|Win32 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Release|x64.ActiveCfg = Release|x64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Release|x64.Build.0 = Release|x64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Debug|ARM64.Build.0 = Debug|ARM64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Debug|Win32.ActiveCfg = Debug|Win32 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Debug|Win32.Build.0 = Debug|Win32 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Debug|x64.ActiveCfg = Debug|x64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Debug|x64.Build.0 = Debug|x64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Release|ARM64.ActiveCfg = Release|ARM64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Release|ARM64.Build.0 = Release|ARM64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Release|Win32.ActiveCfg = Release|Win32 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Release|Win32.Build.0 = Release|Win32 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Release|x64.ActiveCfg = Release|x64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Release|x64.Build.0 = Release|x64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Debug|ARM64.Build.0 = Debug|ARM64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Debug|Win32.ActiveCfg = Debug|Win32 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Debug|Win32.Build.0 = Debug|Win32 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Debug|x64.ActiveCfg = Debug|x64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Debug|x64.Build.0 = Debug|x64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Release|ARM64.ActiveCfg = Release|ARM64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Release|ARM64.Build.0 = Release|ARM64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Release|Win32.ActiveCfg = Release|Win32 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Release|Win32.Build.0 = Release|Win32 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Release|x64.ActiveCfg = Release|x64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Release|x64.Build.0 = Release|x64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Debug|ARM64.Build.0 = Debug|ARM64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Debug|Win32.ActiveCfg = Debug|Win32 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Debug|Win32.Build.0 = Debug|Win32 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Debug|x64.ActiveCfg = Debug|x64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Debug|x64.Build.0 = Debug|x64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Release|ARM64.ActiveCfg = Release|ARM64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Release|ARM64.Build.0 = Release|ARM64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Release|Win32.ActiveCfg = Release|Win32 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Release|Win32.Build.0 = Release|Win32 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Release|x64.ActiveCfg = Release|x64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Release|x64.Build.0 = Release|x64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Debug|ARM64.Build.0 = Debug|ARM64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Debug|Win32.ActiveCfg = Debug|Win32 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Debug|Win32.Build.0 = Debug|Win32 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Debug|x64.ActiveCfg = Debug|x64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Debug|x64.Build.0 = Debug|x64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Release|ARM64.ActiveCfg = Release|ARM64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Release|ARM64.Build.0 = Release|ARM64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Release|Win32.ActiveCfg = Release|Win32 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Release|Win32.Build.0 = Release|Win32 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Release|x64.ActiveCfg = Release|x64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Release|x64.Build.0 = Release|x64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Debug|ARM64.Build.0 = Debug|ARM64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Debug|Win32.ActiveCfg = Debug|Win32 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Debug|Win32.Build.0 = Debug|Win32 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Debug|x64.ActiveCfg = Debug|x64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Debug|x64.Build.0 = Debug|x64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Release|ARM64.ActiveCfg = Release|ARM64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Release|ARM64.Build.0 = Release|ARM64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Release|Win32.ActiveCfg = Release|Win32 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Release|Win32.Build.0 = Release|Win32 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Release|x64.ActiveCfg = Release|x64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Release|x64.Build.0 = Release|x64 - {937DFA65-5709-4643-B778-482C15DEC581}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {937DFA65-5709-4643-B778-482C15DEC581}.Debug|ARM64.Build.0 = Debug|ARM64 - {937DFA65-5709-4643-B778-482C15DEC581}.Debug|Win32.ActiveCfg = Debug|Win32 - {937DFA65-5709-4643-B778-482C15DEC581}.Debug|Win32.Build.0 = Debug|Win32 - {937DFA65-5709-4643-B778-482C15DEC581}.Debug|x64.ActiveCfg = Debug|x64 - {937DFA65-5709-4643-B778-482C15DEC581}.Debug|x64.Build.0 = Debug|x64 - {937DFA65-5709-4643-B778-482C15DEC581}.Release|ARM64.ActiveCfg = Release|ARM64 - {937DFA65-5709-4643-B778-482C15DEC581}.Release|ARM64.Build.0 = Release|ARM64 - {937DFA65-5709-4643-B778-482C15DEC581}.Release|Win32.ActiveCfg = Release|Win32 - {937DFA65-5709-4643-B778-482C15DEC581}.Release|Win32.Build.0 = Release|Win32 - {937DFA65-5709-4643-B778-482C15DEC581}.Release|x64.ActiveCfg = Release|x64 - {937DFA65-5709-4643-B778-482C15DEC581}.Release|x64.Build.0 = Release|x64 - {56807EC2-1793-438F-942E-DE7F09283971}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {56807EC2-1793-438F-942E-DE7F09283971}.Debug|ARM64.Build.0 = Debug|ARM64 - {56807EC2-1793-438F-942E-DE7F09283971}.Debug|Win32.ActiveCfg = Debug|Win32 - {56807EC2-1793-438F-942E-DE7F09283971}.Debug|Win32.Build.0 = Debug|Win32 - {56807EC2-1793-438F-942E-DE7F09283971}.Debug|x64.ActiveCfg = Debug|x64 - {56807EC2-1793-438F-942E-DE7F09283971}.Debug|x64.Build.0 = Debug|x64 - {56807EC2-1793-438F-942E-DE7F09283971}.Release|ARM64.ActiveCfg = Release|ARM64 - {56807EC2-1793-438F-942E-DE7F09283971}.Release|ARM64.Build.0 = Release|ARM64 - {56807EC2-1793-438F-942E-DE7F09283971}.Release|Win32.ActiveCfg = Release|Win32 - {56807EC2-1793-438F-942E-DE7F09283971}.Release|Win32.Build.0 = Release|Win32 - {56807EC2-1793-438F-942E-DE7F09283971}.Release|x64.ActiveCfg = Release|x64 - {56807EC2-1793-438F-942E-DE7F09283971}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {8A63CAA2-D300-4EB4-B13E-75841A991EFE} - EndGlobalSection -EndGlobal diff --git a/TTXSamples/TTXSamples.v17.sln b/TTXSamples/TTXSamples.v17.sln deleted file mode 100644 index cc4051c0e..000000000 --- a/TTXSamples/TTXSamples.v17.sln +++ /dev/null @@ -1,273 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.14.36310.24 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXAlwaysOnTop", "TTXAlwaysOnTop\TTXAlwaysOnTop.v17.vcxproj", "{E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXResizeWin", "TTXResizeWin\TTXResizeWin.v17.vcxproj", "{11EF5960-4922-49DC-9E64-B0845FC7C88C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXResizeMenu", "TTXResizeMenu\TTXResizeMenu.v17.vcxproj", "{4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXFixedWinSize", "TTXFixedWinSize\TTXFixedWinSize.v17.vcxproj", "{3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXttyrec", "TTXttyrec\TTXttyrec.v17.vcxproj", "{5798E37E-0428-457E-A652-EE0A75130327}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXttyplay", "TTXttyrec\TTXttyplay.v17.vcxproj", "{3181E887-2183-4FB8-84CC-CA5B4D48BC71}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXtest", "ttxtest\TTXtest.v17.vcxproj", "{9E20E276-1905-44AE-BC67-C1A1F3C42135}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXKcodeChange", "TTXKcodeChange\TTXKcodeChange.v17.vcxproj", "{2E487F50-84E4-404D-A7E1-F9FA4A72BC25}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXViewMode", "TTXViewMode\TTXViewMode.v17.vcxproj", "{2296FB66-3FA4-4136-8252-ABECEEAC2D70}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXCopyIniFile", "TTXCopyIniFile\TTXCopyIniFile.v17.vcxproj", "{2B2B8D6E-4A84-49DD-8291-46172FCE422A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXCallSysMenu", "TTXCallSysMenu\TTXCallSysMenu.v17.vcxproj", "{25709A86-E6B8-4CDA-906C-02D935E05978}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXCommandLineOpt", "TTXCommandLineOpt\TTXCommandLineOpt.v17.vcxproj", "{EE8BFC38-7000-42F1-BBC3-17F19855918A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXRecurringCommand", "TTXRecurringCommand\TTXRecurringCommand.v17.vcxproj", "{3C656364-FAEA-41D2-B227-52187D3C2529}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXShowCommandLine", "TTXShowCommandLine\TTXShowCommandLine.v17.vcxproj", "{80ED9927-27F9-473A-802C-FB10DEB5ECC6}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXOutputBuffering", "TTXOutputBuffering\TTXOutputBuffering.v17.vcxproj", "{80BE71D1-BEA3-4A5D-8F13-362D6364892D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXCheckUpdate", "TTXCheckUpdate\TTXCheckUpdate.v17.vcxproj", "{937DFA65-5709-4643-B778-482C15DEC581}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TTXChangeFontSize", "TTXChangeFontSize\TTXChangeFontSize.v17.vcxproj", "{56807EC2-1793-438F-942E-DE7F09283971}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Debug|ARM64.Build.0 = Debug|ARM64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Debug|Win32.ActiveCfg = Debug|Win32 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Debug|Win32.Build.0 = Debug|Win32 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Debug|x64.ActiveCfg = Debug|x64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Debug|x64.Build.0 = Debug|x64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Release|ARM64.ActiveCfg = Release|ARM64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Release|ARM64.Build.0 = Release|ARM64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Release|Win32.ActiveCfg = Release|Win32 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Release|Win32.Build.0 = Release|Win32 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Release|x64.ActiveCfg = Release|x64 - {E86DDB2C-CC00-43D1-8A1A-4B042EC983D6}.Release|x64.Build.0 = Release|x64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Debug|ARM64.Build.0 = Debug|ARM64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Debug|Win32.ActiveCfg = Debug|Win32 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Debug|Win32.Build.0 = Debug|Win32 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Debug|x64.ActiveCfg = Debug|x64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Debug|x64.Build.0 = Debug|x64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Release|ARM64.ActiveCfg = Release|ARM64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Release|ARM64.Build.0 = Release|ARM64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Release|Win32.ActiveCfg = Release|Win32 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Release|Win32.Build.0 = Release|Win32 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Release|x64.ActiveCfg = Release|x64 - {11EF5960-4922-49DC-9E64-B0845FC7C88C}.Release|x64.Build.0 = Release|x64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Debug|ARM64.Build.0 = Debug|ARM64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Debug|Win32.ActiveCfg = Debug|Win32 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Debug|Win32.Build.0 = Debug|Win32 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Debug|x64.ActiveCfg = Debug|x64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Debug|x64.Build.0 = Debug|x64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Release|ARM64.ActiveCfg = Release|ARM64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Release|ARM64.Build.0 = Release|ARM64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Release|Win32.ActiveCfg = Release|Win32 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Release|Win32.Build.0 = Release|Win32 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Release|x64.ActiveCfg = Release|x64 - {4EA6AEB6-9CCD-4E6D-9531-3F92184EBE67}.Release|x64.Build.0 = Release|x64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Debug|ARM64.Build.0 = Debug|ARM64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Debug|Win32.ActiveCfg = Debug|Win32 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Debug|Win32.Build.0 = Debug|Win32 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Debug|x64.ActiveCfg = Debug|x64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Debug|x64.Build.0 = Debug|x64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Release|ARM64.ActiveCfg = Release|ARM64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Release|ARM64.Build.0 = Release|ARM64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Release|Win32.ActiveCfg = Release|Win32 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Release|Win32.Build.0 = Release|Win32 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Release|x64.ActiveCfg = Release|x64 - {3C12BA78-2F6A-4655-B6FF-E1BFF2A191D8}.Release|x64.Build.0 = Release|x64 - {5798E37E-0428-457E-A652-EE0A75130327}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {5798E37E-0428-457E-A652-EE0A75130327}.Debug|ARM64.Build.0 = Debug|ARM64 - {5798E37E-0428-457E-A652-EE0A75130327}.Debug|Win32.ActiveCfg = Debug|Win32 - {5798E37E-0428-457E-A652-EE0A75130327}.Debug|Win32.Build.0 = Debug|Win32 - {5798E37E-0428-457E-A652-EE0A75130327}.Debug|x64.ActiveCfg = Debug|x64 - {5798E37E-0428-457E-A652-EE0A75130327}.Debug|x64.Build.0 = Debug|x64 - {5798E37E-0428-457E-A652-EE0A75130327}.Release|ARM64.ActiveCfg = Release|ARM64 - {5798E37E-0428-457E-A652-EE0A75130327}.Release|ARM64.Build.0 = Release|ARM64 - {5798E37E-0428-457E-A652-EE0A75130327}.Release|Win32.ActiveCfg = Release|Win32 - {5798E37E-0428-457E-A652-EE0A75130327}.Release|Win32.Build.0 = Release|Win32 - {5798E37E-0428-457E-A652-EE0A75130327}.Release|x64.ActiveCfg = Release|x64 - {5798E37E-0428-457E-A652-EE0A75130327}.Release|x64.Build.0 = Release|x64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Debug|ARM64.Build.0 = Debug|ARM64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Debug|Win32.ActiveCfg = Debug|Win32 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Debug|Win32.Build.0 = Debug|Win32 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Debug|x64.ActiveCfg = Debug|x64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Debug|x64.Build.0 = Debug|x64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Release|ARM64.ActiveCfg = Release|ARM64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Release|ARM64.Build.0 = Release|ARM64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Release|Win32.ActiveCfg = Release|Win32 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Release|Win32.Build.0 = Release|Win32 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Release|x64.ActiveCfg = Release|x64 - {3181E887-2183-4FB8-84CC-CA5B4D48BC71}.Release|x64.Build.0 = Release|x64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Debug|ARM64.Build.0 = Debug|ARM64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Debug|Win32.ActiveCfg = Debug|Win32 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Debug|Win32.Build.0 = Debug|Win32 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Debug|x64.ActiveCfg = Debug|x64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Debug|x64.Build.0 = Debug|x64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Release|ARM64.ActiveCfg = Release|ARM64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Release|ARM64.Build.0 = Release|ARM64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Release|Win32.ActiveCfg = Release|Win32 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Release|Win32.Build.0 = Release|Win32 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Release|x64.ActiveCfg = Release|x64 - {9E20E276-1905-44AE-BC67-C1A1F3C42135}.Release|x64.Build.0 = Release|x64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Debug|ARM64.Build.0 = Debug|ARM64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Debug|Win32.ActiveCfg = Debug|Win32 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Debug|Win32.Build.0 = Debug|Win32 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Debug|x64.ActiveCfg = Debug|x64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Debug|x64.Build.0 = Debug|x64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Release|ARM64.ActiveCfg = Release|ARM64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Release|ARM64.Build.0 = Release|ARM64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Release|Win32.ActiveCfg = Release|Win32 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Release|Win32.Build.0 = Release|Win32 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Release|x64.ActiveCfg = Release|x64 - {2E487F50-84E4-404D-A7E1-F9FA4A72BC25}.Release|x64.Build.0 = Release|x64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Debug|ARM64.Build.0 = Debug|ARM64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Debug|Win32.ActiveCfg = Debug|Win32 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Debug|Win32.Build.0 = Debug|Win32 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Debug|x64.ActiveCfg = Debug|x64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Debug|x64.Build.0 = Debug|x64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Release|ARM64.ActiveCfg = Release|ARM64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Release|ARM64.Build.0 = Release|ARM64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Release|Win32.ActiveCfg = Release|Win32 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Release|Win32.Build.0 = Release|Win32 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Release|x64.ActiveCfg = Release|x64 - {2296FB66-3FA4-4136-8252-ABECEEAC2D70}.Release|x64.Build.0 = Release|x64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Debug|ARM64.Build.0 = Debug|ARM64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Debug|Win32.ActiveCfg = Debug|Win32 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Debug|Win32.Build.0 = Debug|Win32 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Debug|x64.ActiveCfg = Debug|x64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Debug|x64.Build.0 = Debug|x64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Release|ARM64.ActiveCfg = Release|ARM64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Release|ARM64.Build.0 = Release|ARM64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Release|Win32.ActiveCfg = Release|Win32 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Release|Win32.Build.0 = Release|Win32 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Release|x64.ActiveCfg = Release|x64 - {2B2B8D6E-4A84-49DD-8291-46172FCE422A}.Release|x64.Build.0 = Release|x64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Debug|ARM64.Build.0 = Debug|ARM64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Debug|Win32.ActiveCfg = Debug|Win32 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Debug|Win32.Build.0 = Debug|Win32 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Debug|x64.ActiveCfg = Debug|x64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Debug|x64.Build.0 = Debug|x64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Release|ARM64.ActiveCfg = Release|ARM64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Release|ARM64.Build.0 = Release|ARM64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Release|Win32.ActiveCfg = Release|Win32 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Release|Win32.Build.0 = Release|Win32 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Release|x64.ActiveCfg = Release|x64 - {0ECAF69B-08B4-414A-B822-BE8459E463D8}.Release|x64.Build.0 = Release|x64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Debug|ARM64.Build.0 = Debug|ARM64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Debug|Win32.ActiveCfg = Debug|Win32 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Debug|Win32.Build.0 = Debug|Win32 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Debug|x64.ActiveCfg = Debug|x64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Debug|x64.Build.0 = Debug|x64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Release|ARM64.ActiveCfg = Release|ARM64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Release|ARM64.Build.0 = Release|ARM64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Release|Win32.ActiveCfg = Release|Win32 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Release|Win32.Build.0 = Release|Win32 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Release|x64.ActiveCfg = Release|x64 - {25709A86-E6B8-4CDA-906C-02D935E05978}.Release|x64.Build.0 = Release|x64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Debug|ARM64.Build.0 = Debug|ARM64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Debug|Win32.ActiveCfg = Debug|Win32 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Debug|Win32.Build.0 = Debug|Win32 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Debug|x64.ActiveCfg = Debug|x64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Debug|x64.Build.0 = Debug|x64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Release|ARM64.ActiveCfg = Release|ARM64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Release|ARM64.Build.0 = Release|ARM64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Release|Win32.ActiveCfg = Release|Win32 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Release|Win32.Build.0 = Release|Win32 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Release|x64.ActiveCfg = Release|x64 - {EE8BFC38-7000-42F1-BBC3-17F19855918A}.Release|x64.Build.0 = Release|x64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Debug|ARM64.Build.0 = Debug|ARM64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Debug|Win32.ActiveCfg = Debug|Win32 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Debug|Win32.Build.0 = Debug|Win32 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Debug|x64.ActiveCfg = Debug|x64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Debug|x64.Build.0 = Debug|x64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Release|ARM64.ActiveCfg = Release|ARM64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Release|ARM64.Build.0 = Release|ARM64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Release|Win32.ActiveCfg = Release|Win32 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Release|Win32.Build.0 = Release|Win32 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Release|x64.ActiveCfg = Release|x64 - {3C656364-FAEA-41D2-B227-52187D3C2529}.Release|x64.Build.0 = Release|x64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Debug|ARM64.Build.0 = Debug|ARM64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Debug|Win32.ActiveCfg = Debug|Win32 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Debug|Win32.Build.0 = Debug|Win32 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Debug|x64.ActiveCfg = Debug|x64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Debug|x64.Build.0 = Debug|x64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Release|ARM64.ActiveCfg = Release|ARM64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Release|ARM64.Build.0 = Release|ARM64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Release|Win32.ActiveCfg = Release|Win32 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Release|Win32.Build.0 = Release|Win32 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Release|x64.ActiveCfg = Release|x64 - {80ED9927-27F9-473A-802C-FB10DEB5ECC6}.Release|x64.Build.0 = Release|x64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Debug|ARM64.Build.0 = Debug|ARM64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Debug|Win32.ActiveCfg = Debug|Win32 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Debug|Win32.Build.0 = Debug|Win32 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Debug|x64.ActiveCfg = Debug|x64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Debug|x64.Build.0 = Debug|x64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Release|ARM64.ActiveCfg = Release|ARM64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Release|ARM64.Build.0 = Release|ARM64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Release|Win32.ActiveCfg = Release|Win32 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Release|Win32.Build.0 = Release|Win32 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Release|x64.ActiveCfg = Release|x64 - {80BE71D1-BEA3-4A5D-8F13-362D6364892D}.Release|x64.Build.0 = Release|x64 - {937DFA65-5709-4643-B778-482C15DEC581}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {937DFA65-5709-4643-B778-482C15DEC581}.Debug|ARM64.Build.0 = Debug|ARM64 - {937DFA65-5709-4643-B778-482C15DEC581}.Debug|Win32.ActiveCfg = Debug|Win32 - {937DFA65-5709-4643-B778-482C15DEC581}.Debug|Win32.Build.0 = Debug|Win32 - {937DFA65-5709-4643-B778-482C15DEC581}.Debug|x64.ActiveCfg = Debug|x64 - {937DFA65-5709-4643-B778-482C15DEC581}.Debug|x64.Build.0 = Debug|x64 - {937DFA65-5709-4643-B778-482C15DEC581}.Release|ARM64.ActiveCfg = Release|ARM64 - {937DFA65-5709-4643-B778-482C15DEC581}.Release|ARM64.Build.0 = Release|ARM64 - {937DFA65-5709-4643-B778-482C15DEC581}.Release|Win32.ActiveCfg = Release|Win32 - {937DFA65-5709-4643-B778-482C15DEC581}.Release|Win32.Build.0 = Release|Win32 - {937DFA65-5709-4643-B778-482C15DEC581}.Release|x64.ActiveCfg = Release|x64 - {937DFA65-5709-4643-B778-482C15DEC581}.Release|x64.Build.0 = Release|x64 - {56807EC2-1793-438F-942E-DE7F09283971}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {56807EC2-1793-438F-942E-DE7F09283971}.Debug|ARM64.Build.0 = Debug|ARM64 - {56807EC2-1793-438F-942E-DE7F09283971}.Debug|Win32.ActiveCfg = Debug|Win32 - {56807EC2-1793-438F-942E-DE7F09283971}.Debug|Win32.Build.0 = Debug|Win32 - {56807EC2-1793-438F-942E-DE7F09283971}.Debug|x64.ActiveCfg = Debug|x64 - {56807EC2-1793-438F-942E-DE7F09283971}.Debug|x64.Build.0 = Debug|x64 - {56807EC2-1793-438F-942E-DE7F09283971}.Release|ARM64.ActiveCfg = Release|ARM64 - {56807EC2-1793-438F-942E-DE7F09283971}.Release|ARM64.Build.0 = Release|ARM64 - {56807EC2-1793-438F-942E-DE7F09283971}.Release|Win32.ActiveCfg = Release|Win32 - {56807EC2-1793-438F-942E-DE7F09283971}.Release|Win32.Build.0 = Release|Win32 - {56807EC2-1793-438F-942E-DE7F09283971}.Release|x64.ActiveCfg = Release|x64 - {56807EC2-1793-438F-942E-DE7F09283971}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {8A63CAA2-D300-4EB4-B13E-75841A991EFE} - EndGlobalSection -EndGlobal diff --git a/TTXSamples/TTXSamples.v18.slnx b/TTXSamples/TTXSamples.v18.slnx deleted file mode 100644 index c92e0caf7..000000000 --- a/TTXSamples/TTXSamples.v18.slnx +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v16.vcxproj b/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v16.vcxproj deleted file mode 100644 index 5bd91c346..000000000 --- a/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v16.vcxproj +++ /dev/null @@ -1,261 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {80ED9927-27F9-473A-802C-FB10DEB5ECC6} - TTXShowCommandLine - Win32Proj - TTXShowCommandLine - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v16.vcxproj.filters b/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v16.vcxproj.filters deleted file mode 100644 index d96958774..000000000 --- a/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v16.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {e155f1a7-bb1c-4c4a-81fe-475778200096} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v17.vcxproj b/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v17.vcxproj deleted file mode 100644 index 2cd2a1a51..000000000 --- a/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v17.vcxproj +++ /dev/null @@ -1,261 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {80ED9927-27F9-473A-802C-FB10DEB5ECC6} - TTXShowCommandLine - Win32Proj - TTXShowCommandLine - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v17.vcxproj.filters b/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v17.vcxproj.filters deleted file mode 100644 index d96958774..000000000 --- a/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v17.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {e155f1a7-bb1c-4c4a-81fe-475778200096} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v18.vcxproj b/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v18.vcxproj deleted file mode 100644 index 9230dc10f..000000000 --- a/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v18.vcxproj +++ /dev/null @@ -1,261 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {80ED9927-27F9-473A-802C-FB10DEB5ECC6} - TTXShowCommandLine - Win32Proj - TTXShowCommandLine - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - common_static.lib;%(AdditionalDependencies) - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v18.vcxproj.filters b/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v18.vcxproj.filters deleted file mode 100644 index d96958774..000000000 --- a/TTXSamples/TTXShowCommandLine/TTXShowCommandLine.v18.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {e155f1a7-bb1c-4c4a-81fe-475778200096} - - - - - Source Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXViewMode/TTXViewMode.v16.vcxproj b/TTXSamples/TTXViewMode/TTXViewMode.v16.vcxproj deleted file mode 100644 index a4eebfc3d..000000000 --- a/TTXSamples/TTXViewMode/TTXViewMode.v16.vcxproj +++ /dev/null @@ -1,270 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {2296FB66-3FA4-4136-8252-ABECEEAC2D70} - TTXViewMode - Win32Proj - TTXViewMode - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXViewMode/TTXViewMode.v16.vcxproj.filters b/TTXSamples/TTXViewMode/TTXViewMode.v16.vcxproj.filters deleted file mode 100644 index 4efa9cf9e..000000000 --- a/TTXSamples/TTXViewMode/TTXViewMode.v16.vcxproj.filters +++ /dev/null @@ -1,43 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {207e9925-fb82-42d1-a276-7ac21274c358} - - - - - Source Files - - - - - Header Files - - - - - Resource Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXViewMode/TTXViewMode.v17.vcxproj b/TTXSamples/TTXViewMode/TTXViewMode.v17.vcxproj deleted file mode 100644 index e700417af..000000000 --- a/TTXSamples/TTXViewMode/TTXViewMode.v17.vcxproj +++ /dev/null @@ -1,270 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {2296FB66-3FA4-4136-8252-ABECEEAC2D70} - TTXViewMode - Win32Proj - TTXViewMode - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXViewMode/TTXViewMode.v17.vcxproj.filters b/TTXSamples/TTXViewMode/TTXViewMode.v17.vcxproj.filters deleted file mode 100644 index 4efa9cf9e..000000000 --- a/TTXSamples/TTXViewMode/TTXViewMode.v17.vcxproj.filters +++ /dev/null @@ -1,43 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {207e9925-fb82-42d1-a276-7ac21274c358} - - - - - Source Files - - - - - Header Files - - - - - Resource Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXViewMode/TTXViewMode.v18.vcxproj b/TTXSamples/TTXViewMode/TTXViewMode.v18.vcxproj deleted file mode 100644 index 4bd823060..000000000 --- a/TTXSamples/TTXViewMode/TTXViewMode.v18.vcxproj +++ /dev/null @@ -1,270 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {2296FB66-3FA4-4136-8252-ABECEEAC2D70} - TTXViewMode - Win32Proj - TTXViewMode - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - user32.dll;%(DelayLoadDLLs) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXViewMode/TTXViewMode.v18.vcxproj.filters b/TTXSamples/TTXViewMode/TTXViewMode.v18.vcxproj.filters deleted file mode 100644 index 4efa9cf9e..000000000 --- a/TTXSamples/TTXViewMode/TTXViewMode.v18.vcxproj.filters +++ /dev/null @@ -1,43 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {207e9925-fb82-42d1-a276-7ac21274c358} - - - - - Source Files - - - - - Header Files - - - - - Resource Files - - - - - ReadMe - - - ReadMe - - - \ No newline at end of file diff --git a/TTXSamples/TTXttyrec/TTXttyplay.v16.vcxproj b/TTXSamples/TTXttyrec/TTXttyplay.v16.vcxproj deleted file mode 100644 index 2bee8e9af..000000000 --- a/TTXSamples/TTXttyrec/TTXttyplay.v16.vcxproj +++ /dev/null @@ -1,265 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {3181E887-2183-4FB8-84CC-CA5B4D48BC71} - TTXttyplay - Win32Proj - TTXttyplay - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXttyrec/TTXttyplay.v16.vcxproj.filters b/TTXSamples/TTXttyrec/TTXttyplay.v16.vcxproj.filters deleted file mode 100644 index 982876c3d..000000000 --- a/TTXSamples/TTXttyrec/TTXttyplay.v16.vcxproj.filters +++ /dev/null @@ -1,36 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {9ecc9ed6-14bd-4931-8e17-5de779b005f2} - - - {b5b0513b-87e3-414c-9535-6e4b8451b4cb} - - - - - Source Files - - - Source Files - - - - - ReadMe - - - ReadMe - - - - - Header Files - - - \ No newline at end of file diff --git a/TTXSamples/TTXttyrec/TTXttyplay.v17.vcxproj b/TTXSamples/TTXttyrec/TTXttyplay.v17.vcxproj deleted file mode 100644 index a8f4cca37..000000000 --- a/TTXSamples/TTXttyrec/TTXttyplay.v17.vcxproj +++ /dev/null @@ -1,265 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {3181E887-2183-4FB8-84CC-CA5B4D48BC71} - TTXttyplay - Win32Proj - TTXttyplay - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXttyrec/TTXttyplay.v17.vcxproj.filters b/TTXSamples/TTXttyrec/TTXttyplay.v17.vcxproj.filters deleted file mode 100644 index 982876c3d..000000000 --- a/TTXSamples/TTXttyrec/TTXttyplay.v17.vcxproj.filters +++ /dev/null @@ -1,36 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {9ecc9ed6-14bd-4931-8e17-5de779b005f2} - - - {b5b0513b-87e3-414c-9535-6e4b8451b4cb} - - - - - Source Files - - - Source Files - - - - - ReadMe - - - ReadMe - - - - - Header Files - - - \ No newline at end of file diff --git a/TTXSamples/TTXttyrec/TTXttyplay.v18.vcxproj b/TTXSamples/TTXttyrec/TTXttyplay.v18.vcxproj deleted file mode 100644 index 7db95bfee..000000000 --- a/TTXSamples/TTXttyrec/TTXttyplay.v18.vcxproj +++ /dev/null @@ -1,265 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {3181E887-2183-4FB8-84CC-CA5B4D48BC71} - TTXttyplay - Win32Proj - TTXttyplay - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - play.$(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXttyrec/TTXttyplay.v18.vcxproj.filters b/TTXSamples/TTXttyrec/TTXttyplay.v18.vcxproj.filters deleted file mode 100644 index 982876c3d..000000000 --- a/TTXSamples/TTXttyrec/TTXttyplay.v18.vcxproj.filters +++ /dev/null @@ -1,36 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {9ecc9ed6-14bd-4931-8e17-5de779b005f2} - - - {b5b0513b-87e3-414c-9535-6e4b8451b4cb} - - - - - Source Files - - - Source Files - - - - - ReadMe - - - ReadMe - - - - - Header Files - - - \ No newline at end of file diff --git a/TTXSamples/TTXttyrec/TTXttyrec.v16.vcxproj b/TTXSamples/TTXttyrec/TTXttyrec.v16.vcxproj deleted file mode 100644 index 5ffd843c5..000000000 --- a/TTXSamples/TTXttyrec/TTXttyrec.v16.vcxproj +++ /dev/null @@ -1,265 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {5798E37E-0428-457E-A652-EE0A75130327} - TTXttyrec - Win32Proj - TTXttyrec - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXttyrec/TTXttyrec.v16.vcxproj.filters b/TTXSamples/TTXttyrec/TTXttyrec.v16.vcxproj.filters deleted file mode 100644 index 10c3dd047..000000000 --- a/TTXSamples/TTXttyrec/TTXttyrec.v16.vcxproj.filters +++ /dev/null @@ -1,36 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {83b91709-fa4b-4165-be9e-bb0b43840a4a} - - - {d0ccabca-8574-4219-b8be-8b7d7e127248} - - - - - Source Files - - - Source Files - - - - - ReadMe - - - ReadMe - - - - - Header Files - - - \ No newline at end of file diff --git a/TTXSamples/TTXttyrec/TTXttyrec.v17.vcxproj b/TTXSamples/TTXttyrec/TTXttyrec.v17.vcxproj deleted file mode 100644 index 398a05e88..000000000 --- a/TTXSamples/TTXttyrec/TTXttyrec.v17.vcxproj +++ /dev/null @@ -1,265 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {5798E37E-0428-457E-A652-EE0A75130327} - TTXttyrec - Win32Proj - TTXttyrec - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXttyrec/TTXttyrec.v17.vcxproj.filters b/TTXSamples/TTXttyrec/TTXttyrec.v17.vcxproj.filters deleted file mode 100644 index 10c3dd047..000000000 --- a/TTXSamples/TTXttyrec/TTXttyrec.v17.vcxproj.filters +++ /dev/null @@ -1,36 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {83b91709-fa4b-4165-be9e-bb0b43840a4a} - - - {d0ccabca-8574-4219-b8be-8b7d7e127248} - - - - - Source Files - - - Source Files - - - - - ReadMe - - - ReadMe - - - - - Header Files - - - \ No newline at end of file diff --git a/TTXSamples/TTXttyrec/TTXttyrec.v18.vcxproj b/TTXSamples/TTXttyrec/TTXttyrec.v18.vcxproj deleted file mode 100644 index 7fb21784a..000000000 --- a/TTXSamples/TTXttyrec/TTXttyrec.v18.vcxproj +++ /dev/null @@ -1,265 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {5798E37E-0428-457E-A652-EE0A75130327} - TTXttyrec - Win32Proj - TTXttyrec - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - rec.$(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - MachineX86 - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - false - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - common_static.lib;ttpcmn.lib;%(AdditionalDependencies) - true - Windows - true - true - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/TTXttyrec/TTXttyrec.v18.vcxproj.filters b/TTXSamples/TTXttyrec/TTXttyrec.v18.vcxproj.filters deleted file mode 100644 index 10c3dd047..000000000 --- a/TTXSamples/TTXttyrec/TTXttyrec.v18.vcxproj.filters +++ /dev/null @@ -1,36 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {83b91709-fa4b-4165-be9e-bb0b43840a4a} - - - {d0ccabca-8574-4219-b8be-8b7d7e127248} - - - - - Source Files - - - Source Files - - - - - ReadMe - - - ReadMe - - - - - Header Files - - - \ No newline at end of file diff --git a/TTXSamples/ttxtest/TTXtest.v16.vcxproj b/TTXSamples/ttxtest/TTXtest.v16.vcxproj deleted file mode 100644 index f6c1e03b9..000000000 --- a/TTXSamples/ttxtest/TTXtest.v16.vcxproj +++ /dev/null @@ -1,245 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {9E20E276-1905-44AE-BC67-C1A1F3C42135} - TTXtest - Win32Proj - TTXtest - 10.0 - - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - true - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - DynamicLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/ttxtest/TTXtest.v16.vcxproj.filters b/TTXSamples/ttxtest/TTXtest.v16.vcxproj.filters deleted file mode 100644 index 2f20fe35c..000000000 --- a/TTXSamples/ttxtest/TTXtest.v16.vcxproj.filters +++ /dev/null @@ -1,14 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - - - Source Files - - - \ No newline at end of file diff --git a/TTXSamples/ttxtest/TTXtest.v17.vcxproj b/TTXSamples/ttxtest/TTXtest.v17.vcxproj deleted file mode 100644 index 94cbbdb7b..000000000 --- a/TTXSamples/ttxtest/TTXtest.v17.vcxproj +++ /dev/null @@ -1,245 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {9E20E276-1905-44AE-BC67-C1A1F3C42135} - TTXtest - Win32Proj - TTXtest - 10.0 - - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - true - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - DynamicLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/ttxtest/TTXtest.v17.vcxproj.filters b/TTXSamples/ttxtest/TTXtest.v17.vcxproj.filters deleted file mode 100644 index 2f20fe35c..000000000 --- a/TTXSamples/ttxtest/TTXtest.v17.vcxproj.filters +++ /dev/null @@ -1,14 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - - - Source Files - - - \ No newline at end of file diff --git a/TTXSamples/ttxtest/TTXtest.v18.vcxproj b/TTXSamples/ttxtest/TTXtest.v18.vcxproj deleted file mode 100644 index 2feb59850..000000000 --- a/TTXSamples/ttxtest/TTXtest.v18.vcxproj +++ /dev/null @@ -1,245 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {9E20E276-1905-44AE-BC67-C1A1F3C42135} - TTXtest - Win32Proj - TTXtest - 10.0 - - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - true - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - DynamicLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - MachineX86 - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - EditAndContinue - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - false - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - MachineX86 - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - /source-charset:utf-8 %(AdditionalOptions) - - - true - Windows - true - true - - - - - - - - - \ No newline at end of file diff --git a/TTXSamples/ttxtest/TTXtest.v18.vcxproj.filters b/TTXSamples/ttxtest/TTXtest.v18.vcxproj.filters deleted file mode 100644 index 2f20fe35c..000000000 --- a/TTXSamples/ttxtest/TTXtest.v18.vcxproj.filters +++ /dev/null @@ -1,14 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - - - Source Files - - - \ No newline at end of file diff --git a/cygwin/cyglaunch/cyglaunch.v16.vcxproj b/cygwin/cyglaunch/cyglaunch.v16.vcxproj deleted file mode 100644 index b392ce3cd..000000000 --- a/cygwin/cyglaunch/cyglaunch.v16.vcxproj +++ /dev/null @@ -1,271 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - 16.0 - Win32Proj - {11b49891-80f0-4dd3-b6e9-70bbe64a4bbf} - cyglaunch - 10.0 - cyglaunch - - - - Application - true - v142 - MultiByte - - - Application - true - v142 - MultiByte - - - Application - true - v142 - MultiByte - - - Application - false - v142 - true - MultiByte - - - Application - false - v142 - true - MultiByte - - - Application - false - v142 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - true - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - true - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - true - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - {a171f48c-bfb2-4766-97c3-9b8b7be9d548} - - - - - - \ No newline at end of file diff --git a/cygwin/cyglaunch/cyglaunch.v17.vcxproj b/cygwin/cyglaunch/cyglaunch.v17.vcxproj deleted file mode 100644 index d60de3e50..000000000 --- a/cygwin/cyglaunch/cyglaunch.v17.vcxproj +++ /dev/null @@ -1,271 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - 16.0 - Win32Proj - {11b49891-80f0-4dd3-b6e9-70bbe64a4bbf} - cyglaunch - 10.0 - cyglaunch - - - - Application - true - v143 - MultiByte - - - Application - true - v143 - MultiByte - - - Application - true - v143 - MultiByte - - - Application - false - v143 - true - MultiByte - - - Application - false - v143 - true - MultiByte - - - Application - false - v143 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - true - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - true - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - true - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - {a171f48c-bfb2-4766-97c3-9b8b7be9d548} - - - - - - \ No newline at end of file diff --git a/cygwin/cyglaunch/cyglaunch.v18.vcxproj b/cygwin/cyglaunch/cyglaunch.v18.vcxproj deleted file mode 100644 index fe21a901b..000000000 --- a/cygwin/cyglaunch/cyglaunch.v18.vcxproj +++ /dev/null @@ -1,271 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - 16.0 - Win32Proj - {11b49891-80f0-4dd3-b6e9-70bbe64a4bbf} - cyglaunch - 10.0 - cyglaunch - - - - Application - true - v145 - MultiByte - - - Application - true - v145 - MultiByte - - - Application - true - v145 - MultiByte - - - Application - false - v145 - true - MultiByte - - - Application - false - v145 - true - MultiByte - - - Application - false - v145 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - true - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - true - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - ..\..\teraterm\common;..\cyglib;%(AdditionalIncludeDirectories) - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Windows - true - true - true - common_static.lib;%(AdditionalDependencies) - wmainCRTStartup - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - - - - - - - - - - - {a171f48c-bfb2-4766-97c3-9b8b7be9d548} - - - - - - \ No newline at end of file diff --git a/cygwin/cyglib/cyglib.v16.vcxproj b/cygwin/cyglib/cyglib.v16.vcxproj deleted file mode 100644 index a82e5c23c..000000000 --- a/cygwin/cyglib/cyglib.v16.vcxproj +++ /dev/null @@ -1,269 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - - - - - - - 16.0 - Win32Proj - {a171f48c-bfb2-4766-97c3-9b8b7be9d548} - cyglib - 10.0 - cyglib - - - - StaticLibrary - true - v142 - MultiByte - - - StaticLibrary - true - v142 - MultiByte - - - StaticLibrary - true - v142 - MultiByte - - - StaticLibrary - false - v142 - true - MultiByte - - - StaticLibrary - false - v142 - true - MultiByte - - - StaticLibrary - false - v142 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Level4 - true - WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - - - - - Level4 - true - WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - - - - - Level4 - true - WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - true - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - true - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - true - true - - - - - - \ No newline at end of file diff --git a/cygwin/cyglib/cyglib.v17.vcxproj b/cygwin/cyglib/cyglib.v17.vcxproj deleted file mode 100644 index 35124f4d1..000000000 --- a/cygwin/cyglib/cyglib.v17.vcxproj +++ /dev/null @@ -1,269 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - - - - - - - 16.0 - Win32Proj - {a171f48c-bfb2-4766-97c3-9b8b7be9d548} - cyglib - 10.0 - cyglib - - - - StaticLibrary - true - v143 - MultiByte - - - StaticLibrary - true - v143 - MultiByte - - - StaticLibrary - true - v143 - MultiByte - - - StaticLibrary - false - v143 - true - MultiByte - - - StaticLibrary - false - v143 - true - MultiByte - - - StaticLibrary - false - v143 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Level4 - true - WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - - - - - Level4 - true - WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - - - - - Level4 - true - WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - true - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - true - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - true - true - - - - - - \ No newline at end of file diff --git a/cygwin/cyglib/cyglib.v18.vcxproj b/cygwin/cyglib/cyglib.v18.vcxproj deleted file mode 100644 index ab53a5386..000000000 --- a/cygwin/cyglib/cyglib.v18.vcxproj +++ /dev/null @@ -1,269 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - - - - - - - 16.0 - Win32Proj - {a171f48c-bfb2-4766-97c3-9b8b7be9d548} - cyglib - 10.0 - cyglib - - - - StaticLibrary - true - v145 - MultiByte - - - StaticLibrary - true - v145 - MultiByte - - - StaticLibrary - true - v145 - MultiByte - - - StaticLibrary - false - v145 - true - MultiByte - - - StaticLibrary - false - v145 - true - MultiByte - - - StaticLibrary - false - v145 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Level4 - true - WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - - - - - Level4 - true - WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - - - - - Level4 - true - WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - true - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - true - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) - true - NotUsing - pch.h - ..\..\teraterm\common;%(AdditionalIncludeDirectories) - true - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - - - true - true - true - - - - - - \ No newline at end of file diff --git a/cygwin/cygtool/cygtool.v16.vcxproj b/cygwin/cygtool/cygtool.v16.vcxproj deleted file mode 100644 index 0d06dc8e5..000000000 --- a/cygwin/cygtool/cygtool.v16.vcxproj +++ /dev/null @@ -1,257 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - 16.0 - Win32Proj - {e8955970-1031-42b4-9419-f82d9dd80c66} - cygtool - 10.0 - cygtool - - - - DynamicLibrary - true - v142 - MultiByte - - - DynamicLibrary - true - v142 - MultiByte - - - DynamicLibrary - true - v142 - MultiByte - - - DynamicLibrary - false - v142 - true - MultiByte - - - DynamicLibrary - false - v142 - true - MultiByte - - - DynamicLibrary - false - v142 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Level2 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level2 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level2 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/cygwin/cygtool/cygtool.v17.vcxproj b/cygwin/cygtool/cygtool.v17.vcxproj deleted file mode 100644 index c39b79203..000000000 --- a/cygwin/cygtool/cygtool.v17.vcxproj +++ /dev/null @@ -1,257 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - 16.0 - Win32Proj - {e8955970-1031-42b4-9419-f82d9dd80c66} - cygtool - 10.0 - cygtool - - - - DynamicLibrary - true - v143 - MultiByte - - - DynamicLibrary - true - v143 - MultiByte - - - DynamicLibrary - true - v143 - MultiByte - - - DynamicLibrary - false - v143 - true - MultiByte - - - DynamicLibrary - false - v143 - true - MultiByte - - - DynamicLibrary - false - v143 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Level2 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level2 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level2 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/cygwin/cygtool/cygtool.v18.vcxproj b/cygwin/cygtool/cygtool.v18.vcxproj deleted file mode 100644 index 0be29c645..000000000 --- a/cygwin/cygtool/cygtool.v18.vcxproj +++ /dev/null @@ -1,257 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - 16.0 - Win32Proj - {e8955970-1031-42b4-9419-f82d9dd80c66} - cygtool - 10.0 - cygtool - - - - DynamicLibrary - true - v145 - MultiByte - - - DynamicLibrary - true - v145 - MultiByte - - - DynamicLibrary - true - v145 - MultiByte - - - DynamicLibrary - false - v145 - true - MultiByte - - - DynamicLibrary - false - v145 - true - MultiByte - - - DynamicLibrary - false - v145 - true - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - true - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - false - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Level2 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level2 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level2 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - true - MultiThreaded - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - version.lib;%(AdditionalDependencies) - cygtool.def - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/cygwin/cygwin.v16.sln b/cygwin/cygwin.v16.sln deleted file mode 100644 index 88ed896d0..000000000 --- a/cygwin/cygwin.v16.sln +++ /dev/null @@ -1,65 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.31729.503 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cyglib", "cyglib\cyglib.v16.vcxproj", "{A171F48C-BFB2-4766-97C3-9B8B7BE9D548}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cyglaunch", "cyglaunch\cyglaunch.v16.vcxproj", "{11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cygtool", "cygtool\cygtool.v16.vcxproj", "{E8955970-1031-42B4-9419-F82D9DD80C66}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Debug|ARM64.Build.0 = Debug|ARM64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Debug|Win32.ActiveCfg = Debug|Win32 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Debug|Win32.Build.0 = Debug|Win32 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Debug|x64.ActiveCfg = Debug|x64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Debug|x64.Build.0 = Debug|x64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Release|ARM64.ActiveCfg = Release|ARM64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Release|ARM64.Build.0 = Release|ARM64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Release|Win32.ActiveCfg = Release|Win32 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Release|Win32.Build.0 = Release|Win32 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Release|x64.ActiveCfg = Release|x64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Release|x64.Build.0 = Release|x64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Debug|ARM64.Build.0 = Debug|ARM64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Debug|Win32.ActiveCfg = Debug|Win32 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Debug|Win32.Build.0 = Debug|Win32 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Debug|x64.ActiveCfg = Debug|x64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Debug|x64.Build.0 = Debug|x64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Release|ARM64.ActiveCfg = Release|ARM64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Release|ARM64.Build.0 = Release|ARM64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Release|Win32.ActiveCfg = Release|Win32 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Release|Win32.Build.0 = Release|Win32 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Release|x64.ActiveCfg = Release|x64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Release|x64.Build.0 = Release|x64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Debug|ARM64.Build.0 = Debug|ARM64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Debug|Win32.ActiveCfg = Debug|Win32 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Debug|Win32.Build.0 = Debug|Win32 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Debug|x64.ActiveCfg = Debug|x64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Debug|x64.Build.0 = Debug|x64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Release|ARM64.ActiveCfg = Release|ARM64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Release|ARM64.Build.0 = Release|ARM64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Release|Win32.ActiveCfg = Release|Win32 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Release|Win32.Build.0 = Release|Win32 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Release|x64.ActiveCfg = Release|x64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {89725780-D46B-40E3-8811-B5F8FAB57C1C} - EndGlobalSection -EndGlobal diff --git a/cygwin/cygwin.v17.sln b/cygwin/cygwin.v17.sln deleted file mode 100644 index 3980405aa..000000000 --- a/cygwin/cygwin.v17.sln +++ /dev/null @@ -1,65 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.14.36310.24 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cyglib", "cyglib\cyglib.v17.vcxproj", "{A171F48C-BFB2-4766-97C3-9B8B7BE9D548}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cyglaunch", "cyglaunch\cyglaunch.v17.vcxproj", "{11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cygtool", "cygtool\cygtool.v17.vcxproj", "{E8955970-1031-42B4-9419-F82D9DD80C66}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Debug|ARM64.Build.0 = Debug|ARM64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Debug|Win32.ActiveCfg = Debug|Win32 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Debug|Win32.Build.0 = Debug|Win32 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Debug|x64.ActiveCfg = Debug|x64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Debug|x64.Build.0 = Debug|x64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Release|ARM64.ActiveCfg = Release|ARM64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Release|ARM64.Build.0 = Release|ARM64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Release|Win32.ActiveCfg = Release|Win32 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Release|Win32.Build.0 = Release|Win32 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Release|x64.ActiveCfg = Release|x64 - {A171F48C-BFB2-4766-97C3-9B8B7BE9D548}.Release|x64.Build.0 = Release|x64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Debug|ARM64.Build.0 = Debug|ARM64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Debug|Win32.ActiveCfg = Debug|Win32 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Debug|Win32.Build.0 = Debug|Win32 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Debug|x64.ActiveCfg = Debug|x64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Debug|x64.Build.0 = Debug|x64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Release|ARM64.ActiveCfg = Release|ARM64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Release|ARM64.Build.0 = Release|ARM64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Release|Win32.ActiveCfg = Release|Win32 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Release|Win32.Build.0 = Release|Win32 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Release|x64.ActiveCfg = Release|x64 - {11B49891-80F0-4DD3-B6E9-70BBE64A4BBF}.Release|x64.Build.0 = Release|x64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Debug|ARM64.Build.0 = Debug|ARM64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Debug|Win32.ActiveCfg = Debug|Win32 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Debug|Win32.Build.0 = Debug|Win32 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Debug|x64.ActiveCfg = Debug|x64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Debug|x64.Build.0 = Debug|x64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Release|ARM64.ActiveCfg = Release|ARM64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Release|ARM64.Build.0 = Release|ARM64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Release|Win32.ActiveCfg = Release|Win32 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Release|Win32.Build.0 = Release|Win32 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Release|x64.ActiveCfg = Release|x64 - {E8955970-1031-42B4-9419-F82D9DD80C66}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {89725780-D46B-40E3-8811-B5F8FAB57C1C} - EndGlobalSection -EndGlobal diff --git a/cygwin/cygwin.v18.slnx b/cygwin/cygwin.v18.slnx deleted file mode 100644 index a36112fbd..000000000 --- a/cygwin/cygwin.v18.slnx +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/teraterm/common/common_static.v16.vcxproj b/teraterm/common/common_static.v16.vcxproj deleted file mode 100644 index 1b15374bd..000000000 --- a/teraterm/common/common_static.v16.vcxproj +++ /dev/null @@ -1,445 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - common_static - common_static - 10.0 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A} - - - - StaticLibrary - v142 - false - - - StaticLibrary - v142 - false - - - StaticLibrary - v142 - false - - - StaticLibrary - v142 - false - - - StaticLibrary - v142 - false - - - StaticLibrary - v142 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/teraterm/common/common_static.v17.vcxproj b/teraterm/common/common_static.v17.vcxproj deleted file mode 100644 index 8264248f7..000000000 --- a/teraterm/common/common_static.v17.vcxproj +++ /dev/null @@ -1,445 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - common_static - common_static - 10.0 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A} - - - - StaticLibrary - v143 - false - - - StaticLibrary - v143 - false - - - StaticLibrary - v143 - false - - - StaticLibrary - v143 - false - - - StaticLibrary - v143 - false - - - StaticLibrary - v143 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/teraterm/common/common_static.v18.vcxproj b/teraterm/common/common_static.v18.vcxproj deleted file mode 100644 index 91668b99e..000000000 --- a/teraterm/common/common_static.v18.vcxproj +++ /dev/null @@ -1,445 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - common_static - common_static - 10.0 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A} - - - - StaticLibrary - v145 - false - - - StaticLibrary - v145 - false - - - StaticLibrary - v145 - false - - - StaticLibrary - v145 - false - - - StaticLibrary - v145 - false - - - StaticLibrary - v145 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;$(SolutionDir)susie_plugin;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/teraterm/keycode/keycode.v16.vcxproj b/teraterm/keycode/keycode.v16.vcxproj deleted file mode 100644 index 06c79d54a..000000000 --- a/teraterm/keycode/keycode.v16.vcxproj +++ /dev/null @@ -1,344 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E} - keycode - keycode - 10.0 - - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreaded - Level3 - true - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Windows - MachineX86 - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreaded - Level3 - true - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Windows - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreaded - Level3 - true - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Windows - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Windows - MachineX86 - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Windows - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Windows - - - - - Disabled - Disabled - Disabled - - - - - - - - - 0x0411 - 0x0411 - 0x0411 - 0x0411 - 0x0411 - 0x0411 - - - - - - - - {ac42387d-23ec-45db-81f9-8933c7efa52a} - - - {118e0d32-5553-4f73-9927-e873c1c500e4} - - - - - - \ No newline at end of file diff --git a/teraterm/keycode/keycode.v16.vcxproj.filters b/teraterm/keycode/keycode.v16.vcxproj.filters deleted file mode 100644 index 6894107fa..000000000 --- a/teraterm/keycode/keycode.v16.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {ecd3cbea-075b-4c13-a52a-fd2954d4a8ed} - cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90 - - - {30dab4eb-5d58-472d-9cbf-19372fbd61bb} - ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe - - - {2609d358-8047-4097-9b36-5e2502ac3af0} - h;hpp;hxx;hm;inl;fi;fd - - - - - Source Files - - - - - Resource Files - - - - - Resource Files - - - Resource Files - - - - - Header Files - - - diff --git a/teraterm/keycode/keycode.v17.vcxproj b/teraterm/keycode/keycode.v17.vcxproj deleted file mode 100644 index 887210109..000000000 --- a/teraterm/keycode/keycode.v17.vcxproj +++ /dev/null @@ -1,344 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E} - keycode - keycode - 10.0 - - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreaded - Level3 - true - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Windows - MachineX86 - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreaded - Level3 - true - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Windows - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreaded - Level3 - true - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Windows - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Windows - MachineX86 - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Windows - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Windows - - - - - Disabled - Disabled - Disabled - - - - - - - - - 0x0411 - 0x0411 - 0x0411 - 0x0411 - 0x0411 - 0x0411 - - - - - - - - {ac42387d-23ec-45db-81f9-8933c7efa52a} - - - {118e0d32-5553-4f73-9927-e873c1c500e4} - - - - - - \ No newline at end of file diff --git a/teraterm/keycode/keycode.v18.vcxproj b/teraterm/keycode/keycode.v18.vcxproj deleted file mode 100644 index aee58af6a..000000000 --- a/teraterm/keycode/keycode.v18.vcxproj +++ /dev/null @@ -1,344 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E} - keycode - keycode - 10.0 - - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreaded - Level3 - true - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Windows - MachineX86 - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreaded - Level3 - true - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Windows - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreaded - Level3 - true - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Windows - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Windows - MachineX86 - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Windows - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - $(SolutionDir)common;%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Windows - - - - - Disabled - Disabled - Disabled - - - - - - - - - 0x0411 - 0x0411 - 0x0411 - 0x0411 - 0x0411 - 0x0411 - - - - - - - - {ac42387d-23ec-45db-81f9-8933c7efa52a} - - - {118e0d32-5553-4f73-9927-e873c1c500e4} - - - - - - diff --git a/teraterm/teraterm/ttermpro.v16.vcxproj b/teraterm/teraterm/ttermpro.v16.vcxproj deleted file mode 100644 index d23ebd375..000000000 --- a/teraterm/teraterm/ttermpro.v16.vcxproj +++ /dev/null @@ -1,657 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06} - ttermpro - MFCProj - ttermpro - 10.0 - - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - - - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - - - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {ac42387d-23ec-45db-81f9-8933c7efa52a} - - - {118e0d32-5553-4f73-9927-e873c1c500e4} - false - - - {ba519362-a2c2-4b1a-905b-f00791f9038a} - false - - - - - - - - - - - diff --git a/teraterm/teraterm/ttermpro.v16.vcxproj.filters b/teraterm/teraterm/ttermpro.v16.vcxproj.filters deleted file mode 100644 index 35eccd725..000000000 --- a/teraterm/teraterm/ttermpro.v16.vcxproj.filters +++ /dev/null @@ -1,772 +0,0 @@ - - - - - {c944ea9f-5e84-4cb4-9662-58a9031ec1be} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {9f09ffc2-cdc3-4159-92f7-e637db2a2927} - ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe - - - {962df722-a84a-4837-a367-5e66f4d40803} - - - {e3efecca-9842-408d-979e-a4c7af432f65} - h;hpp;hxx;hm;inl - - - {23d7c62e-eff4-4a0d-b8b4-7fc703717c0e} - - - {1cdaec4a-75c1-4600-b434-45286f5bec80} - - - {0494dec4-73a6-4271-9dfa-ad4b61e2b62c} - - - {ceb6977e-f86f-423e-a1ca-d2fcb004e7cc} - - - {5c80e9f6-d586-4ebc-860d-1d2915b6e1b1} - - - {68f0946a-607e-4e50-89d8-edaee85394d0} - - - {2d6ac865-54a1-4b77-80fc-10822ae0226a} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - ttpdlg - - - Source Files - - - Source Files - - - dialog - - - dialog - - - dialog - - - Source Files - - - dialog - - - dialog - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - Source Files - - - ttpfile - - - Source Files - - - ttpfile - - - cyglib - - - dialog - - - ttpset - - - ttpset - - - ttpcmn - - - ttpcmn - - - Source Files - - - Source Files - - - Source Files - - - dialog - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttptek - - - ttptek - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - Source Files - - - dialog - - - Source Files - - - dialog - - - Source Files - - - dialog - - - Source Files - - - dialog - - - Source Files - - - ttpfile - - - Source Files - - - dialog - - - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - - - Resource Files - - - Resource Files - - - ttpdlg - - - Source Files - - - Source Files - - - dialog - - - dialog - - - Source Files - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - ttpdlg - - - ttpdlg - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - dialog - - - dialog - - - dialog - - - Header Files - - - dialog - - - dialog - - - dialog - - - dialog - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Source Files - - - Header Files - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - Header Files - - - ttpfile - - - cyglib - - - dialog - - - dialog - - - ttpset - - - ttpset - - - ttpcmn - - - ttpcmn - - - ttpcmn - - - Header Files - - - Header Files - - - Header Files - - - dialog - - - ttptek - - - ttptek - - - ttptek - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - Header Files - - - dialog - - - Header Files - - - dialog - - - dialog - - - Header Files - - - dialog - - - dialog - - - Header Files - - - dialog - - - Header Files - - - ttpfile - - - dialog - - - dialog - - - diff --git a/teraterm/teraterm/ttermpro.v17.vcxproj b/teraterm/teraterm/ttermpro.v17.vcxproj deleted file mode 100644 index 38922f39a..000000000 --- a/teraterm/teraterm/ttermpro.v17.vcxproj +++ /dev/null @@ -1,657 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06} - ttermpro - MFCProj - ttermpro - 10.0 - - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - - - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - - - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {ac42387d-23ec-45db-81f9-8933c7efa52a} - - - {118e0d32-5553-4f73-9927-e873c1c500e4} - false - - - {ba519362-a2c2-4b1a-905b-f00791f9038a} - false - - - - - - - - - - - diff --git a/teraterm/teraterm/ttermpro.v17.vcxproj.filters b/teraterm/teraterm/ttermpro.v17.vcxproj.filters deleted file mode 100644 index 44d0aad12..000000000 --- a/teraterm/teraterm/ttermpro.v17.vcxproj.filters +++ /dev/null @@ -1,772 +0,0 @@ - - - - - {c944ea9f-5e84-4cb4-9662-58a9031ec1be} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {9f09ffc2-cdc3-4159-92f7-e637db2a2927} - ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe - - - {962df722-a84a-4837-a367-5e66f4d40803} - - - {e3efecca-9842-408d-979e-a4c7af432f65} - h;hpp;hxx;hm;inl - - - {23d7c62e-eff4-4a0d-b8b4-7fc703717c0e} - - - {1cdaec4a-75c1-4600-b434-45286f5bec80} - - - {0494dec4-73a6-4271-9dfa-ad4b61e2b62c} - - - {ceb6977e-f86f-423e-a1ca-d2fcb004e7cc} - - - {5c80e9f6-d586-4ebc-860d-1d2915b6e1b1} - - - {68f0946a-607e-4e50-89d8-edaee85394d0} - - - {2d6ac865-54a1-4b77-80fc-10822ae0226a} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - ttpdlg - - - Source Files - - - Source Files - - - dialog - - - dialog - - - dialog - - - Source Files - - - dialog - - - dialog - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - Source Files - - - ttpfile - - - Source Files - - - ttpfile - - - cyglib - - - dialog - - - ttpset - - - ttpset - - - ttpcmn - - - ttpcmn - - - Source Files - - - Source Files - - - Source Files - - - dialog - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttptek - - - ttptek - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - Source Files - - - dialog - - - Source Files - - - dialog - - - Source Files - - - dialog - - - Source Files - - - dialog - - - Source Files - - - ttpfile - - - Source Files - - - dialog - - - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - - - Resource Files - - - Resource Files - - - ttpdlg - - - Source Files - - - Source Files - - - dialog - - - dialog - - - Source Files - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - ttpdlg - - - ttpdlg - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - dialog - - - dialog - - - dialog - - - Header Files - - - dialog - - - dialog - - - dialog - - - dialog - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Source Files - - - Header Files - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - Header Files - - - ttpfile - - - cyglib - - - dialog - - - dialog - - - ttpset - - - ttpset - - - ttpcmn - - - ttpcmn - - - ttpcmn - - - Header Files - - - Header Files - - - Header Files - - - dialog - - - ttptek - - - ttptek - - - ttptek - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - Header Files - - - dialog - - - Header Files - - - dialog - - - dialog - - - Header Files - - - dialog - - - dialog - - - Header Files - - - dialog - - - Header Files - - - ttpfile - - - dialog - - - dialog - - - \ No newline at end of file diff --git a/teraterm/teraterm/ttermpro.v18.vcxproj b/teraterm/teraterm/ttermpro.v18.vcxproj deleted file mode 100644 index 738ca4e81..000000000 --- a/teraterm/teraterm/ttermpro.v18.vcxproj +++ /dev/null @@ -1,657 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06} - ttermpro - MFCProj - ttermpro - 10.0 - - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - - - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - - - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)teraterm;$(SolutionDir)common;$(SolutionDir)ttpfile;$(SolutionDir)ttpdlg;$(SolutionDir)ttpcmn;$(SolutionDir)ttptek;$(SolutionDir)..\libs\cJSON;$(SolutionDir)..\cygwin\cyglib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - onig.lib;comctl32.lib;ws2_32.lib;imagehlp.lib;setupapi.lib;gdiplus.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - imagehlp.dll;user32.dll;shell32.dll;%(DelayLoadDLLs) - true - Windows - - - .\teraterm.manifest %(AdditionalManifestFiles) - - - "$(SolutionDir)..\buildtools\svnrev\svnrev.bat" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {ac42387d-23ec-45db-81f9-8933c7efa52a} - - - {118e0d32-5553-4f73-9927-e873c1c500e4} - false - - - {ba519362-a2c2-4b1a-905b-f00791f9038a} - false - - - - - - - - - - - \ No newline at end of file diff --git a/teraterm/teraterm/ttermpro.v18.vcxproj.filters b/teraterm/teraterm/ttermpro.v18.vcxproj.filters deleted file mode 100644 index 44d0aad12..000000000 --- a/teraterm/teraterm/ttermpro.v18.vcxproj.filters +++ /dev/null @@ -1,772 +0,0 @@ - - - - - {c944ea9f-5e84-4cb4-9662-58a9031ec1be} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {9f09ffc2-cdc3-4159-92f7-e637db2a2927} - ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe - - - {962df722-a84a-4837-a367-5e66f4d40803} - - - {e3efecca-9842-408d-979e-a4c7af432f65} - h;hpp;hxx;hm;inl - - - {23d7c62e-eff4-4a0d-b8b4-7fc703717c0e} - - - {1cdaec4a-75c1-4600-b434-45286f5bec80} - - - {0494dec4-73a6-4271-9dfa-ad4b61e2b62c} - - - {ceb6977e-f86f-423e-a1ca-d2fcb004e7cc} - - - {5c80e9f6-d586-4ebc-860d-1d2915b6e1b1} - - - {68f0946a-607e-4e50-89d8-edaee85394d0} - - - {2d6ac865-54a1-4b77-80fc-10822ae0226a} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - ttpdlg - - - Source Files - - - Source Files - - - dialog - - - dialog - - - dialog - - - Source Files - - - dialog - - - dialog - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - Source Files - - - ttpfile - - - Source Files - - - ttpfile - - - cyglib - - - dialog - - - ttpset - - - ttpset - - - ttpcmn - - - ttpcmn - - - Source Files - - - Source Files - - - Source Files - - - dialog - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttpdlg - - - ttptek - - - ttptek - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - Source Files - - - dialog - - - Source Files - - - dialog - - - Source Files - - - dialog - - - Source Files - - - dialog - - - Source Files - - - ttpfile - - - Source Files - - - dialog - - - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - - - Resource Files - - - Resource Files - - - ttpdlg - - - Source Files - - - Source Files - - - dialog - - - dialog - - - Source Files - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - ttpdlg - - - ttpdlg - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - dialog - - - dialog - - - dialog - - - Header Files - - - dialog - - - dialog - - - dialog - - - dialog - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Source Files - - - Header Files - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - ttpfile - - - Header Files - - - ttpfile - - - cyglib - - - dialog - - - dialog - - - ttpset - - - ttpset - - - ttpcmn - - - ttpcmn - - - ttpcmn - - - Header Files - - - Header Files - - - Header Files - - - dialog - - - ttptek - - - ttptek - - - ttptek - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - dialog - - - Header Files - - - dialog - - - Header Files - - - dialog - - - dialog - - - Header Files - - - dialog - - - dialog - - - Header Files - - - dialog - - - Header Files - - - ttpfile - - - dialog - - - dialog - - - \ No newline at end of file diff --git a/teraterm/ttermpro.v16.sln b/teraterm/ttermpro.v16.sln deleted file mode 100644 index 19ccedbf8..000000000 --- a/teraterm/ttermpro.v16.sln +++ /dev/null @@ -1,93 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.28803.156 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttermpro", "teraterm\ttermpro.v16.vcxproj", "{BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "keycode", "keycode\keycode.v16.vcxproj", "{B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttpcmn", "ttpcmn\ttpcmn.v16.vcxproj", "{118E0D32-5553-4F73-9927-E873C1C500E4}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttpmacro", "ttpmacro\ttpmacro.v16.vcxproj", "{BA519362-A2C2-4B1A-905B-F00791F9038A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common_static", "common\common_static.v16.vcxproj", "{AC42387D-23EC-45DB-81F9-8933C7EFA52A}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Debug|ARM64.Build.0 = Debug|ARM64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Debug|Win32.ActiveCfg = Debug|Win32 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Debug|Win32.Build.0 = Debug|Win32 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Debug|x64.ActiveCfg = Debug|x64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Debug|x64.Build.0 = Debug|x64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Release|ARM64.ActiveCfg = Release|ARM64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Release|ARM64.Build.0 = Release|ARM64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Release|Win32.ActiveCfg = Release|Win32 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Release|Win32.Build.0 = Release|Win32 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Release|x64.ActiveCfg = Release|x64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Release|x64.Build.0 = Release|x64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Debug|ARM64.Build.0 = Debug|ARM64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Debug|Win32.ActiveCfg = Debug|Win32 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Debug|Win32.Build.0 = Debug|Win32 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Debug|x64.ActiveCfg = Debug|x64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Debug|x64.Build.0 = Debug|x64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Release|ARM64.ActiveCfg = Release|ARM64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Release|ARM64.Build.0 = Release|ARM64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Release|Win32.ActiveCfg = Release|Win32 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Release|Win32.Build.0 = Release|Win32 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Release|x64.ActiveCfg = Release|x64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Release|x64.Build.0 = Release|x64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Debug|ARM64.Build.0 = Debug|ARM64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Debug|Win32.ActiveCfg = Debug|Win32 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Debug|Win32.Build.0 = Debug|Win32 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Debug|x64.ActiveCfg = Debug|x64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Debug|x64.Build.0 = Debug|x64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Release|ARM64.ActiveCfg = Release|ARM64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Release|ARM64.Build.0 = Release|ARM64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Release|Win32.ActiveCfg = Release|Win32 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Release|Win32.Build.0 = Release|Win32 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Release|x64.ActiveCfg = Release|x64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Release|x64.Build.0 = Release|x64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Debug|ARM64.Build.0 = Debug|ARM64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Debug|Win32.ActiveCfg = Debug|Win32 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Debug|Win32.Build.0 = Debug|Win32 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Debug|x64.ActiveCfg = Debug|x64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Debug|x64.Build.0 = Debug|x64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Release|ARM64.ActiveCfg = Release|ARM64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Release|ARM64.Build.0 = Release|ARM64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Release|Win32.ActiveCfg = Release|Win32 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Release|Win32.Build.0 = Release|Win32 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Release|x64.ActiveCfg = Release|x64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Release|x64.Build.0 = Release|x64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Debug|ARM64.Build.0 = Debug|ARM64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Debug|Win32.ActiveCfg = Debug|Win32 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Debug|Win32.Build.0 = Debug|Win32 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Debug|x64.ActiveCfg = Debug|x64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Debug|x64.Build.0 = Debug|x64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Release|ARM64.ActiveCfg = Release|ARM64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Release|ARM64.Build.0 = Release|ARM64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Release|Win32.ActiveCfg = Release|Win32 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Release|Win32.Build.0 = Release|Win32 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Release|x64.ActiveCfg = Release|x64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {57398713-FF6F-431A-903D-9FE34DC5F9DF} - EndGlobalSection -EndGlobal diff --git a/teraterm/ttermpro.v17.sln b/teraterm/ttermpro.v17.sln deleted file mode 100644 index db8c1ab1a..000000000 --- a/teraterm/ttermpro.v17.sln +++ /dev/null @@ -1,93 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.8.34511.84 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttermpro", "teraterm\ttermpro.v17.vcxproj", "{BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "keycode", "keycode\keycode.v17.vcxproj", "{B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttpcmn", "ttpcmn\ttpcmn.v17.vcxproj", "{118E0D32-5553-4F73-9927-E873C1C500E4}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttpmacro", "ttpmacro\ttpmacro.v17.vcxproj", "{BA519362-A2C2-4B1A-905B-F00791F9038A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common_static", "common\common_static.v17.vcxproj", "{AC42387D-23EC-45DB-81F9-8933C7EFA52A}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Debug|ARM64.Build.0 = Debug|ARM64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Debug|Win32.ActiveCfg = Debug|Win32 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Debug|Win32.Build.0 = Debug|Win32 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Debug|x64.ActiveCfg = Debug|x64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Debug|x64.Build.0 = Debug|x64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Release|ARM64.ActiveCfg = Release|ARM64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Release|ARM64.Build.0 = Release|ARM64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Release|Win32.ActiveCfg = Release|Win32 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Release|Win32.Build.0 = Release|Win32 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Release|x64.ActiveCfg = Release|x64 - {BC4CDBE3-6269-47A8-BD74-EEB3A6160E06}.Release|x64.Build.0 = Release|x64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Debug|ARM64.Build.0 = Debug|ARM64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Debug|Win32.ActiveCfg = Debug|Win32 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Debug|Win32.Build.0 = Debug|Win32 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Debug|x64.ActiveCfg = Debug|x64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Debug|x64.Build.0 = Debug|x64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Release|ARM64.ActiveCfg = Release|ARM64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Release|ARM64.Build.0 = Release|ARM64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Release|Win32.ActiveCfg = Release|Win32 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Release|Win32.Build.0 = Release|Win32 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Release|x64.ActiveCfg = Release|x64 - {B31BF2E8-79E6-4735-BEA2-C1B4041C2D2E}.Release|x64.Build.0 = Release|x64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Debug|ARM64.Build.0 = Debug|ARM64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Debug|Win32.ActiveCfg = Debug|Win32 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Debug|Win32.Build.0 = Debug|Win32 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Debug|x64.ActiveCfg = Debug|x64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Debug|x64.Build.0 = Debug|x64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Release|ARM64.ActiveCfg = Release|ARM64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Release|ARM64.Build.0 = Release|ARM64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Release|Win32.ActiveCfg = Release|Win32 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Release|Win32.Build.0 = Release|Win32 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Release|x64.ActiveCfg = Release|x64 - {118E0D32-5553-4F73-9927-E873C1C500E4}.Release|x64.Build.0 = Release|x64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Debug|ARM64.Build.0 = Debug|ARM64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Debug|Win32.ActiveCfg = Debug|Win32 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Debug|Win32.Build.0 = Debug|Win32 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Debug|x64.ActiveCfg = Debug|x64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Debug|x64.Build.0 = Debug|x64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Release|ARM64.ActiveCfg = Release|ARM64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Release|ARM64.Build.0 = Release|ARM64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Release|Win32.ActiveCfg = Release|Win32 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Release|Win32.Build.0 = Release|Win32 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Release|x64.ActiveCfg = Release|x64 - {BA519362-A2C2-4B1A-905B-F00791F9038A}.Release|x64.Build.0 = Release|x64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Debug|ARM64.Build.0 = Debug|ARM64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Debug|Win32.ActiveCfg = Debug|Win32 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Debug|Win32.Build.0 = Debug|Win32 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Debug|x64.ActiveCfg = Debug|x64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Debug|x64.Build.0 = Debug|x64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Release|ARM64.ActiveCfg = Release|ARM64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Release|ARM64.Build.0 = Release|ARM64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Release|Win32.ActiveCfg = Release|Win32 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Release|Win32.Build.0 = Release|Win32 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Release|x64.ActiveCfg = Release|x64 - {AC42387D-23EC-45DB-81F9-8933C7EFA52A}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {57398713-FF6F-431A-903D-9FE34DC5F9DF} - EndGlobalSection -EndGlobal diff --git a/teraterm/ttermpro.v18.slnx b/teraterm/ttermpro.v18.slnx deleted file mode 100644 index ebcadca59..000000000 --- a/teraterm/ttermpro.v18.slnx +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/teraterm/ttpcmn/ttpcmn.v16.vcxproj b/teraterm/ttpcmn/ttpcmn.v16.vcxproj deleted file mode 100644 index b121d41f6..000000000 --- a/teraterm/ttpcmn/ttpcmn.v16.vcxproj +++ /dev/null @@ -1,395 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {118E0D32-5553-4F73-9927-E873C1C500E4} - ttpcmn - ttpcmn - 10.0 - - - - DynamicLibrary - v142 - false - - - DynamicLibrary - v142 - false - - - DynamicLibrary - v142 - false - - - DynamicLibrary - v142 - false - - - DynamicLibrary - v142 - false - - - DynamicLibrary - v142 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {ac42387d-23ec-45db-81f9-8933c7efa52a} - - - - - - \ No newline at end of file diff --git a/teraterm/ttpcmn/ttpcmn.v16.vcxproj.filters b/teraterm/ttpcmn/ttpcmn.v16.vcxproj.filters deleted file mode 100644 index e54be6d23..000000000 --- a/teraterm/ttpcmn/ttpcmn.v16.vcxproj.filters +++ /dev/null @@ -1,95 +0,0 @@ - - - - - {961353de-481a-43ea-a3f7-3aa6a40ecc0c} - cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90 - - - {ffbe82db-a752-43d2-9655-1a279ac14ec8} - h;hpp;hxx;hm;inl;fi;fd - - - {1faecde1-7990-40de-9a84-08c3801f8730} - def - - - {9abee5ab-c47d-4b80-a1d5-18fcc30c29b2} - ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Def File - - - - - Resource Files - - - \ No newline at end of file diff --git a/teraterm/ttpcmn/ttpcmn.v17.vcxproj b/teraterm/ttpcmn/ttpcmn.v17.vcxproj deleted file mode 100644 index c1ce511b0..000000000 --- a/teraterm/ttpcmn/ttpcmn.v17.vcxproj +++ /dev/null @@ -1,395 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {118E0D32-5553-4F73-9927-E873C1C500E4} - ttpcmn - ttpcmn - 10.0 - - - - DynamicLibrary - v143 - false - - - DynamicLibrary - v143 - false - - - DynamicLibrary - v143 - false - - - DynamicLibrary - v143 - false - - - DynamicLibrary - v143 - false - - - DynamicLibrary - v143 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {ac42387d-23ec-45db-81f9-8933c7efa52a} - - - - - - \ No newline at end of file diff --git a/teraterm/ttpcmn/ttpcmn.v17.vcxproj.filters b/teraterm/ttpcmn/ttpcmn.v17.vcxproj.filters deleted file mode 100644 index e54be6d23..000000000 --- a/teraterm/ttpcmn/ttpcmn.v17.vcxproj.filters +++ /dev/null @@ -1,95 +0,0 @@ - - - - - {961353de-481a-43ea-a3f7-3aa6a40ecc0c} - cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90 - - - {ffbe82db-a752-43d2-9655-1a279ac14ec8} - h;hpp;hxx;hm;inl;fi;fd - - - {1faecde1-7990-40de-9a84-08c3801f8730} - def - - - {9abee5ab-c47d-4b80-a1d5-18fcc30c29b2} - ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Def File - - - - - Resource Files - - - \ No newline at end of file diff --git a/teraterm/ttpcmn/ttpcmn.v18.vcxproj b/teraterm/ttpcmn/ttpcmn.v18.vcxproj deleted file mode 100644 index 98feb6f11..000000000 --- a/teraterm/ttpcmn/ttpcmn.v18.vcxproj +++ /dev/null @@ -1,395 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {118E0D32-5553-4F73-9927-E873C1C500E4} - ttpcmn - ttpcmn - 10.0 - - - - DynamicLibrary - v145 - false - - - DynamicLibrary - v145 - false - - - DynamicLibrary - v145 - false - - - DynamicLibrary - v145 - false - - - DynamicLibrary - v145 - false - - - DynamicLibrary - v145 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)common;.;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - setupapi.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - $(ProjectName).def - setupapi.dll;user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {ac42387d-23ec-45db-81f9-8933c7efa52a} - - - - - - \ No newline at end of file diff --git a/teraterm/ttpcmn/ttpcmn.v18.vcxproj.filters b/teraterm/ttpcmn/ttpcmn.v18.vcxproj.filters deleted file mode 100644 index e54be6d23..000000000 --- a/teraterm/ttpcmn/ttpcmn.v18.vcxproj.filters +++ /dev/null @@ -1,95 +0,0 @@ - - - - - {961353de-481a-43ea-a3f7-3aa6a40ecc0c} - cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90 - - - {ffbe82db-a752-43d2-9655-1a279ac14ec8} - h;hpp;hxx;hm;inl;fi;fd - - - {1faecde1-7990-40de-9a84-08c3801f8730} - def - - - {9abee5ab-c47d-4b80-a1d5-18fcc30c29b2} - ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Def File - - - - - Resource Files - - - \ No newline at end of file diff --git a/teraterm/ttpmacro/ttpmacro.v16.vcxproj b/teraterm/ttpmacro/ttpmacro.v16.vcxproj deleted file mode 100644 index e2d70435f..000000000 --- a/teraterm/ttpmacro/ttpmacro.v16.vcxproj +++ /dev/null @@ -1,427 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {BA519362-A2C2-4B1A-905B-F00791F9038A} - ttpmacro - MFCProj - ttpmacro - 10.0 - - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMT.lib;onig.lib;SFMT.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMT.lib;onig.lib;SFMT.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMT.lib;onig.lib;SFMT.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMTD.lib;onig.lib;SFMTd.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMTD.lib;onig.lib;SFMTd.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMTD.lib;onig.lib;SFMTd.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0x0411 - 0x0411 - 0x0411 - 0x0411 - 0x0411 - 0x0411 - - - - - - {ac42387d-23ec-45db-81f9-8933c7efa52a} - - - {118e0d32-5553-4f73-9927-e873c1c500e4} - false - - - - - - - - - - - \ No newline at end of file diff --git a/teraterm/ttpmacro/ttpmacro.v16.vcxproj.filters b/teraterm/ttpmacro/ttpmacro.v16.vcxproj.filters deleted file mode 100644 index a361eaba2..000000000 --- a/teraterm/ttpmacro/ttpmacro.v16.vcxproj.filters +++ /dev/null @@ -1,176 +0,0 @@ - - - - - {924f64f3-99d1-4df3-a201-68b1b1a000c5} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {a572c283-2f72-45e8-8e83-9b17b3960cb5} - h;hpp;hxx;hm;inl;fi;fd - - - {51ae6c43-0b05-42b4-881b-b0b848091d1b} - ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe - - - {1744405b-5e2a-4278-ac2e-19f0db3d82d1} - c - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - - - Resource Files - - - Resource Files - - - Source Files - - - diff --git a/teraterm/ttpmacro/ttpmacro.v17.vcxproj b/teraterm/ttpmacro/ttpmacro.v17.vcxproj deleted file mode 100644 index eb674c6c2..000000000 --- a/teraterm/ttpmacro/ttpmacro.v17.vcxproj +++ /dev/null @@ -1,427 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {BA519362-A2C2-4B1A-905B-F00791F9038A} - ttpmacro - MFCProj - ttpmacro - 10.0 - - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMT.lib;onig.lib;SFMT.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMT.lib;onig.lib;SFMT.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMT.lib;onig.lib;SFMT.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMTD.lib;onig.lib;SFMTd.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMTD.lib;onig.lib;SFMTd.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMTD.lib;onig.lib;SFMTd.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0x0411 - 0x0411 - 0x0411 - 0x0411 - 0x0411 - 0x0411 - - - - - - {ac42387d-23ec-45db-81f9-8933c7efa52a} - - - {118e0d32-5553-4f73-9927-e873c1c500e4} - false - - - - - - - - - - - \ No newline at end of file diff --git a/teraterm/ttpmacro/ttpmacro.v17.vcxproj.filters b/teraterm/ttpmacro/ttpmacro.v17.vcxproj.filters deleted file mode 100644 index a361eaba2..000000000 --- a/teraterm/ttpmacro/ttpmacro.v17.vcxproj.filters +++ /dev/null @@ -1,176 +0,0 @@ - - - - - {924f64f3-99d1-4df3-a201-68b1b1a000c5} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {a572c283-2f72-45e8-8e83-9b17b3960cb5} - h;hpp;hxx;hm;inl;fi;fd - - - {51ae6c43-0b05-42b4-881b-b0b848091d1b} - ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe - - - {1744405b-5e2a-4278-ac2e-19f0db3d82d1} - c - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - - - Resource Files - - - Resource Files - - - Source Files - - - diff --git a/teraterm/ttpmacro/ttpmacro.v18.vcxproj b/teraterm/ttpmacro/ttpmacro.v18.vcxproj deleted file mode 100644 index b77bbd919..000000000 --- a/teraterm/ttpmacro/ttpmacro.v18.vcxproj +++ /dev/null @@ -1,427 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {BA519362-A2C2-4B1A-905B-F00791F9038A} - ttpmacro - MFCProj - ttpmacro - 10.0 - - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMT.lib;onig.lib;SFMT.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMT.lib;onig.lib;SFMT.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - OnlyExplicitInline - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMT.lib;onig.lib;SFMT.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMTD.lib;onig.lib;SFMTd.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - MachineX86 - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMTD.lib;onig.lib;SFMTd.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\libs\oniguruma\src;$(SolutionDir)..\libs\SFMT;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)common;$(SolutionDir)ttpfile;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)common;%(AdditionalIncludeDirectories) - - - common_static.lib;crypto.lib;LIBCMTD.lib;onig.lib;SFMTd.lib;Comctl32.lib;ws2_32.lib;imagehlp.lib;bcrypt.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\oniguruma\build\$(Platform)\$(Configuration);$(SolutionDir)..\libs\SFMT\build\$(Platform)\$(Configuration);$(OutDir);%(AdditionalLibraryDirectories) - user32.dll;%(DelayLoadDLLs) - true - Windows - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0x0411 - 0x0411 - 0x0411 - 0x0411 - 0x0411 - 0x0411 - - - - - - {ac42387d-23ec-45db-81f9-8933c7efa52a} - - - {118e0d32-5553-4f73-9927-e873c1c500e4} - false - - - - - - - - - - - diff --git a/teraterm/ttpmacro/ttpmacro.v18.vcxproj.filters b/teraterm/ttpmacro/ttpmacro.v18.vcxproj.filters deleted file mode 100644 index a361eaba2..000000000 --- a/teraterm/ttpmacro/ttpmacro.v18.vcxproj.filters +++ /dev/null @@ -1,176 +0,0 @@ - - - - - {924f64f3-99d1-4df3-a201-68b1b1a000c5} - cpp;c;cxx;rc;def;r;odl;idl;hpj;bat - - - {a572c283-2f72-45e8-8e83-9b17b3960cb5} - h;hpp;hxx;hm;inl;fi;fd - - - {51ae6c43-0b05-42b4-881b-b0b848091d1b} - ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe - - - {1744405b-5e2a-4278-ac2e-19f0db3d82d1} - c - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files %28C%29 - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - - - Resource Files - - - Resource Files - - - Source Files - - - diff --git a/ttpmenu/ttpmenu.v16.sln b/ttpmenu/ttpmenu.v16.sln deleted file mode 100644 index d4cd89cf8..000000000 --- a/ttpmenu/ttpmenu.v16.sln +++ /dev/null @@ -1,34 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.28803.156 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttpmenu", "ttpmenu.v16.vcxproj", "{594F6499-8EDA-44DC-AC41-830A754FF1C8}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Debug|ARM64.Build.0 = Debug|ARM64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Debug|Win32.ActiveCfg = Debug|Win32 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Debug|Win32.Build.0 = Debug|Win32 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Debug|x64.ActiveCfg = Debug|x64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Debug|x64.Build.0 = Debug|x64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Release|ARM64.ActiveCfg = Release|ARM64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Release|ARM64.Build.0 = Release|ARM64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Release|Win32.ActiveCfg = Release|Win32 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Release|Win32.Build.0 = Release|Win32 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Release|x64.ActiveCfg = Release|x64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/ttpmenu/ttpmenu.v16.vcxproj b/ttpmenu/ttpmenu.v16.vcxproj deleted file mode 100644 index eac151d0c..000000000 --- a/ttpmenu/ttpmenu.v16.vcxproj +++ /dev/null @@ -1,376 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {594F6499-8EDA-44DC-AC41-830A754FF1C8} - ttpmenu - ttpmenu - 10.0 - - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - Application - v142 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MinSpace - OnlyExplicitInline - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MinSpace - OnlyExplicitInline - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MinSpace - OnlyExplicitInline - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - Default - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - false - MultiThreadedDebug - false - Level3 - true - ProgramDatabase - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - Default - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - false - MultiThreadedDebug - false - Level3 - true - ProgramDatabase - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - Default - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - false - MultiThreadedDebug - false - Level3 - true - ProgramDatabase - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ttpmenu/ttpmenu.v16.vcxproj.filters b/ttpmenu/ttpmenu.v16.vcxproj.filters deleted file mode 100644 index 0108daf5b..000000000 --- a/ttpmenu/ttpmenu.v16.vcxproj.filters +++ /dev/null @@ -1,115 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files %28openssl%29 - - - Header Files %28openssl%29 - - - Header Files %28openssl%29 - - - Header Files %28openssl%29 - - - Header Files %28openssl%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - - - Resource Files - - - Resource Files - - - - - Resource Files - - - Resource Files - - - Resource Files - - - - - {77f5f5fd-595c-4441-9189-707c22355e52} - - - {4e738a60-e352-4bd2-9634-f6643dcfbc19} - - - {6d409006-33c9-4605-8d8e-2e12cca4c682} - - - {39ccc8fc-dab2-4cbb-b483-f040b734ed7c} - - - {12a2b176-9249-4f5a-89c2-b7ddc4814ea5} - - - \ No newline at end of file diff --git a/ttpmenu/ttpmenu.v17.sln b/ttpmenu/ttpmenu.v17.sln deleted file mode 100644 index a66df3ba7..000000000 --- a/ttpmenu/ttpmenu.v17.sln +++ /dev/null @@ -1,34 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.14.36310.24 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttpmenu", "ttpmenu.v17.vcxproj", "{594F6499-8EDA-44DC-AC41-830A754FF1C8}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Debug|ARM64.Build.0 = Debug|ARM64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Debug|Win32.ActiveCfg = Debug|Win32 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Debug|Win32.Build.0 = Debug|Win32 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Debug|x64.ActiveCfg = Debug|x64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Debug|x64.Build.0 = Debug|x64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Release|ARM64.ActiveCfg = Release|ARM64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Release|ARM64.Build.0 = Release|ARM64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Release|Win32.ActiveCfg = Release|Win32 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Release|Win32.Build.0 = Release|Win32 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Release|x64.ActiveCfg = Release|x64 - {594F6499-8EDA-44DC-AC41-830A754FF1C8}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/ttpmenu/ttpmenu.v17.vcxproj b/ttpmenu/ttpmenu.v17.vcxproj deleted file mode 100644 index 978e5b552..000000000 --- a/ttpmenu/ttpmenu.v17.vcxproj +++ /dev/null @@ -1,376 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {594F6499-8EDA-44DC-AC41-830A754FF1C8} - ttpmenu - ttpmenu - 10.0 - - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - Application - v143 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MinSpace - OnlyExplicitInline - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MinSpace - OnlyExplicitInline - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MinSpace - OnlyExplicitInline - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - Default - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - false - MultiThreadedDebug - false - Level3 - true - ProgramDatabase - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - Default - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - false - MultiThreadedDebug - false - Level3 - true - ProgramDatabase - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - Default - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - false - MultiThreadedDebug - false - Level3 - true - ProgramDatabase - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ttpmenu/ttpmenu.v17.vcxproj.filters b/ttpmenu/ttpmenu.v17.vcxproj.filters deleted file mode 100644 index 0108daf5b..000000000 --- a/ttpmenu/ttpmenu.v17.vcxproj.filters +++ /dev/null @@ -1,115 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files %28openssl%29 - - - Header Files %28openssl%29 - - - Header Files %28openssl%29 - - - Header Files %28openssl%29 - - - Header Files %28openssl%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - - - Resource Files - - - Resource Files - - - - - Resource Files - - - Resource Files - - - Resource Files - - - - - {77f5f5fd-595c-4441-9189-707c22355e52} - - - {4e738a60-e352-4bd2-9634-f6643dcfbc19} - - - {6d409006-33c9-4605-8d8e-2e12cca4c682} - - - {39ccc8fc-dab2-4cbb-b483-f040b734ed7c} - - - {12a2b176-9249-4f5a-89c2-b7ddc4814ea5} - - - \ No newline at end of file diff --git a/ttpmenu/ttpmenu.v18.slnx b/ttpmenu/ttpmenu.v18.slnx deleted file mode 100644 index b5d7c8d59..000000000 --- a/ttpmenu/ttpmenu.v18.slnx +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/ttpmenu/ttpmenu.v18.vcxproj b/ttpmenu/ttpmenu.v18.vcxproj deleted file mode 100644 index 98db368e3..000000000 --- a/ttpmenu/ttpmenu.v18.vcxproj +++ /dev/null @@ -1,376 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {594F6499-8EDA-44DC-AC41-830A754FF1C8} - ttpmenu - ttpmenu - 10.0 - - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - Application - v145 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - $(SolutionDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - false - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MinSpace - OnlyExplicitInline - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MinSpace - OnlyExplicitInline - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MinSpace - OnlyExplicitInline - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0411 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - Default - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - false - MultiThreadedDebug - false - Level3 - true - ProgramDatabase - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - MachineX86 - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - Default - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - false - MultiThreadedDebug - false - Level3 - true - ProgramDatabase - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - Default - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories);$(SolutionDir)..\libs\libressl\include - WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) - false - MultiThreadedDebug - false - Level3 - true - ProgramDatabase - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include - - - common_static.lib;comctl32.lib;crypto.lib;Bcrypt.lib;ws2_32.lib;Crypt32.lib;wtsapi32.lib;Dbghelp.lib;%(AdditionalDependencies) - true - true - Windows - $(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories);$(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ttpmenu/ttpmenu.v18.vcxproj.filters b/ttpmenu/ttpmenu.v18.vcxproj.filters deleted file mode 100644 index 0108daf5b..000000000 --- a/ttpmenu/ttpmenu.v18.vcxproj.filters +++ /dev/null @@ -1,115 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files %28openssl%29 - - - Header Files %28openssl%29 - - - Header Files %28openssl%29 - - - Header Files %28openssl%29 - - - Header Files %28openssl%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - Header Files %28common%29 - - - - - Resource Files - - - Resource Files - - - - - Resource Files - - - Resource Files - - - Resource Files - - - - - {77f5f5fd-595c-4441-9189-707c22355e52} - - - {4e738a60-e352-4bd2-9634-f6643dcfbc19} - - - {6d409006-33c9-4605-8d8e-2e12cca4c682} - - - {39ccc8fc-dab2-4cbb-b483-f040b734ed7c} - - - {12a2b176-9249-4f5a-89c2-b7ddc4814ea5} - - - \ No newline at end of file diff --git a/ttssh2/argon2/argon2.v16.vcxproj b/ttssh2/argon2/argon2.v16.vcxproj deleted file mode 100644 index 5b9f4eff5..000000000 --- a/ttssh2/argon2/argon2.v16.vcxproj +++ /dev/null @@ -1,213 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - argon2 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995} - argon2 - - - - StaticLibrary - v142 - NotSet - false - - - StaticLibrary - v142 - NotSet - false - - - StaticLibrary - v142 - NotSet - false - - - StaticLibrary - v142 - NotSet - - - StaticLibrary - v142 - NotSet - - - StaticLibrary - v142 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>16.0.31201.295 - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Disabled - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Level3 - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - Disabled - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Level3 - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - Disabled - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreaded - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreaded - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreaded - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ttssh2/argon2/argon2.v16.vcxproj.filters b/ttssh2/argon2/argon2.v16.vcxproj.filters deleted file mode 100644 index 46bd8f7d8..000000000 --- a/ttssh2/argon2/argon2.v16.vcxproj.filters +++ /dev/null @@ -1,55 +0,0 @@ - - - - - {ab6de084-0bb8-45ae-bf67-583bc1c7f28d} - - - {7be7b0e1-cba8-4d3d-bbfd-a06bf605c2a9} - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - - Source File - - - Source File - - - Source File - - - Source File - - - Source File - - - Source File - - - \ No newline at end of file diff --git a/ttssh2/argon2/argon2.v17.vcxproj b/ttssh2/argon2/argon2.v17.vcxproj deleted file mode 100644 index abe15ea3d..000000000 --- a/ttssh2/argon2/argon2.v17.vcxproj +++ /dev/null @@ -1,213 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - argon2 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995} - argon2 - - - - StaticLibrary - v143 - NotSet - false - - - StaticLibrary - v143 - NotSet - false - - - StaticLibrary - v143 - NotSet - false - - - StaticLibrary - v143 - NotSet - - - StaticLibrary - v143 - NotSet - - - StaticLibrary - v143 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>16.0.31201.295 - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Disabled - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Level3 - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - Disabled - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Level3 - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - Disabled - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreaded - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreaded - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreaded - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ttssh2/argon2/argon2.v17.vcxproj.filters b/ttssh2/argon2/argon2.v17.vcxproj.filters deleted file mode 100644 index 46bd8f7d8..000000000 --- a/ttssh2/argon2/argon2.v17.vcxproj.filters +++ /dev/null @@ -1,55 +0,0 @@ - - - - - {ab6de084-0bb8-45ae-bf67-583bc1c7f28d} - - - {7be7b0e1-cba8-4d3d-bbfd-a06bf605c2a9} - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - - Source File - - - Source File - - - Source File - - - Source File - - - Source File - - - Source File - - - \ No newline at end of file diff --git a/ttssh2/argon2/argon2.v18.vcxproj b/ttssh2/argon2/argon2.v18.vcxproj deleted file mode 100644 index 2d3974d72..000000000 --- a/ttssh2/argon2/argon2.v18.vcxproj +++ /dev/null @@ -1,213 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - argon2 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995} - argon2 - - - - StaticLibrary - v145 - NotSet - false - - - StaticLibrary - v145 - NotSet - false - - - StaticLibrary - v145 - NotSet - false - - - StaticLibrary - v145 - NotSet - - - StaticLibrary - v145 - NotSet - - - StaticLibrary - v145 - NotSet - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>16.0.31201.295 - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Disabled - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Level3 - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - Disabled - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Level3 - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - Disabled - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebug - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreaded - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreaded - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - $(ProjectDir);$(SolutionDir)..\libs\argon2\src;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreaded - Level3 - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ttssh2/argon2/argon2.v18.vcxproj.filters b/ttssh2/argon2/argon2.v18.vcxproj.filters deleted file mode 100644 index 46bd8f7d8..000000000 --- a/ttssh2/argon2/argon2.v18.vcxproj.filters +++ /dev/null @@ -1,55 +0,0 @@ - - - - - {ab6de084-0bb8-45ae-bf67-583bc1c7f28d} - - - {7be7b0e1-cba8-4d3d-bbfd-a06bf605c2a9} - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - - Source File - - - Source File - - - Source File - - - Source File - - - Source File - - - Source File - - - \ No newline at end of file diff --git a/ttssh2/libsshagentc/sshagentc/sshagentc.v16.vcxproj b/ttssh2/libsshagentc/sshagentc/sshagentc.v16.vcxproj deleted file mode 100644 index 683eaa7d4..000000000 --- a/ttssh2/libsshagentc/sshagentc/sshagentc.v16.vcxproj +++ /dev/null @@ -1,241 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - 16.0 - Win32Proj - {b5323378-e523-4cb3-8484-85445b35d39b} - sshagentc - 10.0 - sshagentc - - - - StaticLibrary - true - v142 - Unicode - - - StaticLibrary - true - v142 - Unicode - - - StaticLibrary - true - v142 - Unicode - - - StaticLibrary - false - v142 - true - Unicode - - - StaticLibrary - false - v142 - true - Unicode - - - StaticLibrary - false - v142 - true - Unicode - - - - - - - - - - - - - - - - - - - - - - - - - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ttssh2/libsshagentc/sshagentc/sshagentc.v17.vcxproj b/ttssh2/libsshagentc/sshagentc/sshagentc.v17.vcxproj deleted file mode 100644 index b11338bdb..000000000 --- a/ttssh2/libsshagentc/sshagentc/sshagentc.v17.vcxproj +++ /dev/null @@ -1,241 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - 16.0 - Win32Proj - {b5323378-e523-4cb3-8484-85445b35d39b} - sshagentc - 10.0 - sshagentc - - - - StaticLibrary - true - v143 - Unicode - - - StaticLibrary - true - v143 - Unicode - - - StaticLibrary - true - v143 - Unicode - - - StaticLibrary - false - v143 - true - Unicode - - - StaticLibrary - false - v143 - true - Unicode - - - StaticLibrary - false - v143 - true - Unicode - - - - - - - - - - - - - - - - - - - - - - - - - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ttssh2/libsshagentc/sshagentc/sshagentc.v18.vcxproj b/ttssh2/libsshagentc/sshagentc/sshagentc.v18.vcxproj deleted file mode 100644 index 3bbaff3c0..000000000 --- a/ttssh2/libsshagentc/sshagentc/sshagentc.v18.vcxproj +++ /dev/null @@ -1,241 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - 16.0 - Win32Proj - {b5323378-e523-4cb3-8484-85445b35d39b} - sshagentc - 10.0 - sshagentc - - - - StaticLibrary - true - v145 - Unicode - - - StaticLibrary - true - v145 - Unicode - - - StaticLibrary - true - v145 - Unicode - - - StaticLibrary - false - v145 - true - Unicode - - - StaticLibrary - false - v145 - true - Unicode - - - StaticLibrary - false - v145 - true - Unicode - - - - - - - - - - - - - - - - - - - - - - - - - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - - - - - Level4 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreadedDebug - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level4 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - .. - MultiThreaded - false - /source-charset:utf-8 %(AdditionalOptions) - - - Console - true - true - true - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ttssh2/matcher/matcher.v16.vcxproj b/ttssh2/matcher/matcher.v16.vcxproj deleted file mode 100644 index ace894f08..000000000 --- a/ttssh2/matcher/matcher.v16.vcxproj +++ /dev/null @@ -1,310 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1} - matcher - matcher - 10.0 - - - - Application - v142 - false - MultiByte - - - Application - v142 - false - MultiByte - - - Application - v142 - false - MultiByte - - - Application - v142 - false - MultiByte - - - Application - v142 - false - MultiByte - - - Application - v142 - false - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - - $(OutDir)$(ProjectName).tlb - - - - MaxSpeed - OnlyExplicitInline - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - true - /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Console - MachineX86 - - - - - $(OutDir)$(ProjectName).tlb - - - - - MaxSpeed - OnlyExplicitInline - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - true - /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Console - - - - - $(OutDir)$(ProjectName).tlb - - - - - MaxSpeed - OnlyExplicitInline - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - true - /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Console - - - - - $(OutDir)$(ProjectName)matcher.tlb - - - - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Console - MachineX86 - false - - - - - $(OutDir)$(ProjectName)matcher.tlb - - - - - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Console - false - - - - - $(OutDir)$(ProjectName)matcher.tlb - - - - - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Console - false - - - - - Disabled - Disabled - Disabled - MaxSpeed - MaxSpeed - MaxSpeed - - - Disabled - Disabled - Disabled - MaxSpeed - MaxSpeed - MaxSpeed - - - - - - \ No newline at end of file diff --git a/ttssh2/matcher/matcher.v17.vcxproj b/ttssh2/matcher/matcher.v17.vcxproj deleted file mode 100644 index 46f886a9f..000000000 --- a/ttssh2/matcher/matcher.v17.vcxproj +++ /dev/null @@ -1,310 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1} - matcher - matcher - 10.0 - - - - Application - v143 - false - MultiByte - - - Application - v143 - false - MultiByte - - - Application - v143 - false - MultiByte - - - Application - v143 - false - MultiByte - - - Application - v143 - false - MultiByte - - - Application - v143 - false - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - - $(OutDir)$(ProjectName).tlb - - - - MaxSpeed - OnlyExplicitInline - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - true - /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Console - MachineX86 - - - - - $(OutDir)$(ProjectName).tlb - - - - - MaxSpeed - OnlyExplicitInline - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - true - /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Console - - - - - $(OutDir)$(ProjectName).tlb - - - - - MaxSpeed - OnlyExplicitInline - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - true - /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Console - - - - - $(OutDir)$(ProjectName)matcher.tlb - - - - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Console - MachineX86 - false - - - - - $(OutDir)$(ProjectName)matcher.tlb - - - - - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Console - false - - - - - $(OutDir)$(ProjectName)matcher.tlb - - - - - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Console - false - - - - - Disabled - Disabled - Disabled - MaxSpeed - MaxSpeed - MaxSpeed - - - Disabled - Disabled - Disabled - MaxSpeed - MaxSpeed - MaxSpeed - - - - - - \ No newline at end of file diff --git a/ttssh2/matcher/matcher.v18.vcxproj b/ttssh2/matcher/matcher.v18.vcxproj deleted file mode 100644 index 88a2fc6eb..000000000 --- a/ttssh2/matcher/matcher.v18.vcxproj +++ /dev/null @@ -1,310 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1} - matcher - matcher - 10.0 - - - - Application - v145 - false - MultiByte - - - Application - v145 - false - MultiByte - - - Application - v145 - false - MultiByte - - - Application - v145 - false - MultiByte - - - Application - v145 - false - MultiByte - - - Application - v145 - false - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - - $(OutDir)$(ProjectName).tlb - - - - MaxSpeed - OnlyExplicitInline - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - true - /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Console - MachineX86 - - - - - $(OutDir)$(ProjectName).tlb - - - - - MaxSpeed - OnlyExplicitInline - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - true - /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Console - - - - - $(OutDir)$(ProjectName).tlb - - - - - MaxSpeed - OnlyExplicitInline - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - true - /source-charset:utf-8 %(AdditionalOptions) - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - Console - - - - - $(OutDir)$(ProjectName)matcher.tlb - - - - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Console - MachineX86 - false - - - - - $(OutDir)$(ProjectName)matcher.tlb - - - - - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - EditAndContinue - true - /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Console - false - - - - - $(OutDir)$(ProjectName)matcher.tlb - - - - - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - MultiThreadedDebug - Level3 - true - ProgramDatabase - true - /source-charset:utf-8 %(AdditionalOptions) - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - - - true - true - Console - false - - - - - Disabled - Disabled - Disabled - MaxSpeed - MaxSpeed - MaxSpeed - - - Disabled - Disabled - Disabled - MaxSpeed - MaxSpeed - MaxSpeed - - - - - - \ No newline at end of file diff --git a/ttssh2/ttssh.v16.sln b/ttssh2/ttssh.v16.sln deleted file mode 100644 index 7de2b4629..000000000 --- a/ttssh2/ttssh.v16.sln +++ /dev/null @@ -1,79 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.28803.156 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "matcher", "matcher\matcher.v16.vcxproj", "{C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttxssh", "ttxssh\ttxssh.v16.vcxproj", "{5638BB89-44E3-4D55-BA98-A01142B4223E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "argon2", "argon2\argon2.v16.vcxproj", "{D33C59B8-E227-47D2-8F80-EDA3E28BF995}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sshagentc", "libsshagentc\sshagentc\sshagentc.v16.vcxproj", "{B5323378-E523-4CB3-8484-85445B35D39B}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Debug|ARM64.Build.0 = Debug|ARM64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Debug|Win32.ActiveCfg = Debug|Win32 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Debug|Win32.Build.0 = Debug|Win32 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Debug|x64.ActiveCfg = Debug|x64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Debug|x64.Build.0 = Debug|x64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Release|ARM64.ActiveCfg = Release|ARM64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Release|ARM64.Build.0 = Release|ARM64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Release|Win32.ActiveCfg = Release|Win32 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Release|Win32.Build.0 = Release|Win32 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Release|x64.ActiveCfg = Release|x64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Release|x64.Build.0 = Release|x64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Debug|ARM64.Build.0 = Debug|ARM64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Debug|Win32.ActiveCfg = Debug|Win32 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Debug|Win32.Build.0 = Debug|Win32 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Debug|x64.ActiveCfg = Debug|x64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Debug|x64.Build.0 = Debug|x64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Release|ARM64.ActiveCfg = Release|ARM64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Release|ARM64.Build.0 = Release|ARM64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Release|Win32.ActiveCfg = Release|Win32 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Release|Win32.Build.0 = Release|Win32 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Release|x64.ActiveCfg = Release|x64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Release|x64.Build.0 = Release|x64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Debug|ARM64.Build.0 = Debug|ARM64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Debug|Win32.ActiveCfg = Debug|Win32 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Debug|Win32.Build.0 = Debug|Win32 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Debug|x64.ActiveCfg = Debug|x64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Debug|x64.Build.0 = Debug|x64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Release|ARM64.ActiveCfg = Release|ARM64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Release|ARM64.Build.0 = Release|ARM64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Release|Win32.ActiveCfg = Release|Win32 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Release|Win32.Build.0 = Release|Win32 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Release|x64.ActiveCfg = Release|x64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Release|x64.Build.0 = Release|x64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Debug|ARM64.Build.0 = Debug|ARM64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Debug|Win32.ActiveCfg = Debug|Win32 - {B5323378-E523-4CB3-8484-85445B35D39B}.Debug|Win32.Build.0 = Debug|Win32 - {B5323378-E523-4CB3-8484-85445B35D39B}.Debug|x64.ActiveCfg = Debug|x64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Debug|x64.Build.0 = Debug|x64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Release|ARM64.ActiveCfg = Release|ARM64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Release|ARM64.Build.0 = Release|ARM64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Release|Win32.ActiveCfg = Release|Win32 - {B5323378-E523-4CB3-8484-85445B35D39B}.Release|Win32.Build.0 = Release|Win32 - {B5323378-E523-4CB3-8484-85445B35D39B}.Release|x64.ActiveCfg = Release|x64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {0A304DA2-C07B-4828-9F78-166B53FD7614} - EndGlobalSection -EndGlobal diff --git a/ttssh2/ttssh.v17.sln b/ttssh2/ttssh.v17.sln deleted file mode 100644 index ce4c1d796..000000000 --- a/ttssh2/ttssh.v17.sln +++ /dev/null @@ -1,79 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.6.33723.286 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "matcher", "matcher\matcher.v17.vcxproj", "{C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ttxssh", "ttxssh\ttxssh.v17.vcxproj", "{5638BB89-44E3-4D55-BA98-A01142B4223E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "argon2", "argon2\argon2.v17.vcxproj", "{D33C59B8-E227-47D2-8F80-EDA3E28BF995}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sshagentc", "libsshagentc\sshagentc\sshagentc.v17.vcxproj", "{B5323378-E523-4CB3-8484-85445B35D39B}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM64 = Debug|ARM64 - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|ARM64 = Release|ARM64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Debug|ARM64.Build.0 = Debug|ARM64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Debug|Win32.ActiveCfg = Debug|Win32 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Debug|Win32.Build.0 = Debug|Win32 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Debug|x64.ActiveCfg = Debug|x64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Debug|x64.Build.0 = Debug|x64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Release|ARM64.ActiveCfg = Release|ARM64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Release|ARM64.Build.0 = Release|ARM64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Release|Win32.ActiveCfg = Release|Win32 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Release|Win32.Build.0 = Release|Win32 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Release|x64.ActiveCfg = Release|x64 - {C4B19BFB-8068-4EF2-A3A1-4EC4C40BE7F1}.Release|x64.Build.0 = Release|x64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Debug|ARM64.Build.0 = Debug|ARM64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Debug|Win32.ActiveCfg = Debug|Win32 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Debug|Win32.Build.0 = Debug|Win32 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Debug|x64.ActiveCfg = Debug|x64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Debug|x64.Build.0 = Debug|x64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Release|ARM64.ActiveCfg = Release|ARM64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Release|ARM64.Build.0 = Release|ARM64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Release|Win32.ActiveCfg = Release|Win32 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Release|Win32.Build.0 = Release|Win32 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Release|x64.ActiveCfg = Release|x64 - {5638BB89-44E3-4D55-BA98-A01142B4223E}.Release|x64.Build.0 = Release|x64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Debug|ARM64.Build.0 = Debug|ARM64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Debug|Win32.ActiveCfg = Debug|Win32 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Debug|Win32.Build.0 = Debug|Win32 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Debug|x64.ActiveCfg = Debug|x64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Debug|x64.Build.0 = Debug|x64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Release|ARM64.ActiveCfg = Release|ARM64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Release|ARM64.Build.0 = Release|ARM64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Release|Win32.ActiveCfg = Release|Win32 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Release|Win32.Build.0 = Release|Win32 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Release|x64.ActiveCfg = Release|x64 - {D33C59B8-E227-47D2-8F80-EDA3E28BF995}.Release|x64.Build.0 = Release|x64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Debug|ARM64.ActiveCfg = Debug|ARM64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Debug|ARM64.Build.0 = Debug|ARM64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Debug|Win32.ActiveCfg = Debug|Win32 - {B5323378-E523-4CB3-8484-85445B35D39B}.Debug|Win32.Build.0 = Debug|Win32 - {B5323378-E523-4CB3-8484-85445B35D39B}.Debug|x64.ActiveCfg = Debug|x64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Debug|x64.Build.0 = Debug|x64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Release|ARM64.ActiveCfg = Release|ARM64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Release|ARM64.Build.0 = Release|ARM64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Release|Win32.ActiveCfg = Release|Win32 - {B5323378-E523-4CB3-8484-85445B35D39B}.Release|Win32.Build.0 = Release|Win32 - {B5323378-E523-4CB3-8484-85445B35D39B}.Release|x64.ActiveCfg = Release|x64 - {B5323378-E523-4CB3-8484-85445B35D39B}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {0A304DA2-C07B-4828-9F78-166B53FD7614} - EndGlobalSection -EndGlobal diff --git a/ttssh2/ttssh.v18.slnx b/ttssh2/ttssh.v18.slnx deleted file mode 100644 index b5e507ec9..000000000 --- a/ttssh2/ttssh.v18.slnx +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/ttssh2/ttxssh/ttxssh.v16.vcxproj b/ttssh2/ttxssh/ttxssh.v16.vcxproj deleted file mode 100644 index 4e83e5955..000000000 --- a/ttssh2/ttxssh/ttxssh.v16.vcxproj +++ /dev/null @@ -1,492 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {5638BB89-44E3-4D55-BA98-A01142B4223E} - ttxssh - ttxssh - 10.0 - - - - DynamicLibrary - v142 - false - - - DynamicLibrary - v142 - false - - - DynamicLibrary - v142 - false - - - DynamicLibrary - v142 - false - - - DynamicLibrary - v142 - false - - - DynamicLibrary - v142 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - MultiThreadedDebug - true - true - Level3 - false - true - EditAndContinue - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zsd.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - true - Windows - 0x12500000 - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - MultiThreadedDebug - true - true - Level3 - false - true - EditAndContinue - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zsd.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - MultiThreadedDebug - true - true - Level3 - false - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zsd.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - true - Windows - 0x12500000 - $(OutDir)$(ProjectName).lib - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - AnySuitable - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - ProgramDatabase - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zs.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - Windows - 0x12500000 - $(OutDir)$(ProjectName).lib - MachineX86 - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - AnySuitable - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - ProgramDatabase - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zs.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - AnySuitable - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - ProgramDatabase - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zs.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - Windows - 0x12500000 - $(OutDir)$(ProjectName).lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {d33c59b8-e227-47d2-8f80-eda3e28bf995} - false - - - {b5323378-e523-4cb3-8484-85445b35d39b} - - - - - - - - - \ No newline at end of file diff --git a/ttssh2/ttxssh/ttxssh.v16.vcxproj.filters b/ttssh2/ttxssh/ttxssh.v16.vcxproj.filters deleted file mode 100644 index cd9ab7f7d..000000000 --- a/ttssh2/ttxssh/ttxssh.v16.vcxproj.filters +++ /dev/null @@ -1,320 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - - - {bde719e1-d3ce-4efc-8f42-050f934c5441} - h - - - {1402d13d-e827-4c6c-b334-555b8a086ca7} - - - {198016f0-824a-4e67-b7ee-51cbf3e2b34f} - ico;rc - - - {95d60503-2363-4800-9a4c-add18d0c56e2} - - - - - Resource Files - - - Resource Files - - - Resource Files - - - - - Def File - - - \ No newline at end of file diff --git a/ttssh2/ttxssh/ttxssh.v17.vcxproj b/ttssh2/ttxssh/ttxssh.v17.vcxproj deleted file mode 100644 index 565cb43bd..000000000 --- a/ttssh2/ttxssh/ttxssh.v17.vcxproj +++ /dev/null @@ -1,492 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {5638BB89-44E3-4D55-BA98-A01142B4223E} - ttxssh - ttxssh - 10.0 - - - - DynamicLibrary - v143 - false - - - DynamicLibrary - v143 - false - - - DynamicLibrary - v143 - false - - - DynamicLibrary - v143 - false - - - DynamicLibrary - v143 - false - - - DynamicLibrary - v143 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - MultiThreadedDebug - true - true - Level3 - false - true - EditAndContinue - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zsd.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - true - Windows - 0x12500000 - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - MultiThreadedDebug - true - true - Level3 - false - true - EditAndContinue - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zsd.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - MultiThreadedDebug - true - true - Level3 - false - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zsd.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - true - Windows - 0x12500000 - $(OutDir)$(ProjectName).lib - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - AnySuitable - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - ProgramDatabase - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zs.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - Windows - 0x12500000 - $(OutDir)$(ProjectName).lib - MachineX86 - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - AnySuitable - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - ProgramDatabase - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zs.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - AnySuitable - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - ProgramDatabase - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zs.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - Windows - 0x12500000 - $(OutDir)$(ProjectName).lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {d33c59b8-e227-47d2-8f80-eda3e28bf995} - false - - - {b5323378-e523-4cb3-8484-85445b35d39b} - - - - - - - - - \ No newline at end of file diff --git a/ttssh2/ttxssh/ttxssh.v17.vcxproj.filters b/ttssh2/ttxssh/ttxssh.v17.vcxproj.filters deleted file mode 100644 index cd9ab7f7d..000000000 --- a/ttssh2/ttxssh/ttxssh.v17.vcxproj.filters +++ /dev/null @@ -1,320 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - - - {bde719e1-d3ce-4efc-8f42-050f934c5441} - h - - - {1402d13d-e827-4c6c-b334-555b8a086ca7} - - - {198016f0-824a-4e67-b7ee-51cbf3e2b34f} - ico;rc - - - {95d60503-2363-4800-9a4c-add18d0c56e2} - - - - - Resource Files - - - Resource Files - - - Resource Files - - - - - Def File - - - \ No newline at end of file diff --git a/ttssh2/ttxssh/ttxssh.v18.vcxproj b/ttssh2/ttxssh/ttxssh.v18.vcxproj deleted file mode 100644 index 1a9bfab56..000000000 --- a/ttssh2/ttxssh/ttxssh.v18.vcxproj +++ /dev/null @@ -1,492 +0,0 @@ - - - - - Debug - ARM64 - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM64 - - - Release - Win32 - - - Release - x64 - - - - {5638BB89-44E3-4D55-BA98-A01142B4223E} - ttxssh - ttxssh - 10.0 - - - - DynamicLibrary - v145 - false - - - DynamicLibrary - v145 - false - - - DynamicLibrary - v145 - false - - - DynamicLibrary - v145 - false - - - DynamicLibrary - v145 - false - - - DynamicLibrary - v145 - false - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>12.0.30501.0 - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - true - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - $(ProjectDir)$(Configuration).$(Platform)\ - $(Configuration).$(Platform)\ - false - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - MultiThreadedDebug - true - true - Level3 - false - true - EditAndContinue - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zsd.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - true - Windows - 0x12500000 - $(OutDir)$(ProjectName).lib - MachineX86 - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - MultiThreadedDebug - true - true - Level3 - false - true - EditAndContinue - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zsd.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - true - Windows - $(OutDir)$(ProjectName).lib - false - - - - - _DEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - Disabled - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;%(PreprocessorDefinitions) - MultiThreadedDebug - true - true - Level3 - false - true - ProgramDatabase - Default - true - - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zsd.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - true - Windows - 0x12500000 - $(OutDir)$(ProjectName).lib - false - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - Win32 - $(OutDir)$(ProjectName).tlb - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - AnySuitable - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - ProgramDatabase - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zs.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - Windows - 0x12500000 - $(OutDir)$(ProjectName).lib - MachineX86 - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - AnySuitable - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - ProgramDatabase - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zs.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - Windows - $(OutDir)$(ProjectName).lib - - - - - NDEBUG;%(PreprocessorDefinitions) - true - true - $(OutDir)$(ProjectName).tlb - - - - - /D"_CRT_SECURE_NO_DEPRECATE" /source-charset:utf-8 %(AdditionalOptions) - MaxSpeed - AnySuitable - $(SolutionDir)..\teraterm\common;$(SolutionDir)..\libs\libressl\include;$(SolutionDir)..\teraterm\teraterm;$(SolutionDir)..\libs\zlib;$(SolutionDir)..\libs\zlib\build\$(Platform);$(SolutionDir)matcher;$(SolutionDir)libsshagentc;$(SolutionDir)argon2;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - true - MultiThreaded - true - Level3 - true - ProgramDatabase - Default - true - - - NDEBUG;%(PreprocessorDefinitions) - 0x0409 - $(SolutionDir)..\teraterm\common;%(AdditionalIncludeDirectories) - - - common_static.lib;ws2_32.lib;crypto.lib;Bcrypt.lib;zs.lib;ttpcmn.lib;dnsapi.lib;comctl32.lib;setupapi.lib;crypt32.lib;%(AdditionalDependencies) - true - $(SolutionDir)..\libs\libressl\build\$(Platform)\crypto\$(Configuration);$(SolutionDir)..\libs\zlib\build\$(Platform)\$(Configuration);$(SolutionDir)..\teraterm\$(Configuration).$(Platform);%(AdditionalLibraryDirectories) - $(ProjectName).def - user32.dll;%(DelayLoadDLLs) - true - Windows - 0x12500000 - $(OutDir)$(ProjectName).lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {d33c59b8-e227-47d2-8f80-eda3e28bf995} - false - - - {b5323378-e523-4cb3-8484-85445b35d39b} - - - - - - - - - \ No newline at end of file diff --git a/ttssh2/ttxssh/ttxssh.v18.vcxproj.filters b/ttssh2/ttxssh/ttxssh.v18.vcxproj.filters deleted file mode 100644 index f0713b443..000000000 --- a/ttssh2/ttxssh/ttxssh.v18.vcxproj.filters +++ /dev/null @@ -1,314 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - Resource Files - - - - - {bde719e1-d3ce-4efc-8f42-050f934c5441} - h - - - {1402d13d-e827-4c6c-b334-555b8a086ca7} - - - {198016f0-824a-4e67-b7ee-51cbf3e2b34f} - ico;rc - - - {95d60503-2363-4800-9a4c-add18d0c56e2} - - - - - Resource Files - - - Resource Files - - - Resource Files - - - - - Def File - - - \ No newline at end of file From 98fbc6d5de046f3b87dddc677321c6df7c54ed12 Mon Sep 17 00:00:00 2001 From: Mura Li <2606021+typeless@users.noreply.github.com> Date: Mon, 20 Jul 2026 11:25:39 +0800 Subject: [PATCH 3/6] Phase 5 (3/5): delete the CMake build, keeping cygterm's Remove the 98 tracked CMake files of the MSVC/CMake build that putup replaces: the main app (teraterm/ttssh2/TTProxy/TTXSamples/ttpmenu/tools), the fork's libs/ build orchestration (buildall/lib_*/download/*.cmake), doc/installer/ buildtools CMake, and -- per decision -- all cygwin/ CMake except cygterm's (cyglaunch/cyglib already have putup Tupfiles; the 32-bit cygtool.dll is unshipped and unbuilt by putup). The third-party CMakeLists inside vendored libs/ sources are git-ignored (downloaded at CI), so they are untouched. Kept: cygterm's Cygwin-gcc build -- cygwin/cygterm/{CMakeLists.txt, build_cygterm.cmake, toolchain_*-cygwin.cmake} + cygwin/cygterm_build/CMakeLists.txt. The CMakeLists.txt ships inside cygterm+.tar.gz; CI builds cygterm via its Makefile. --- CMakeLists.txt | 279 ------ TTProxy/CMakeLists.txt | 138 --- TTXKanjiMenu/CMakeLists.txt | 60 -- TTXSamples/CMakeLists.txt | 49 - TTXSamples/TTXAlwaysOnTop/CMakeLists.txt | 55 - TTXSamples/TTXCallSysMenu/CMakeLists.txt | 50 - TTXSamples/TTXChangeFontSize/CMakeLists.txt | 59 -- TTXSamples/TTXCheckUpdate/CMakeLists.txt | 110 -- TTXSamples/TTXCommandLineOpt/CMakeLists.txt | 54 - TTXSamples/TTXCopyIniFile/CMakeLists.txt | 48 - TTXSamples/TTXFixedWinSize/CMakeLists.txt | 50 - TTXSamples/TTXKcodeChange/CMakeLists.txt | 45 - TTXSamples/TTXOutputBuffering/CMakeLists.txt | 45 - TTXSamples/TTXRecurringCommand/CMakeLists.txt | 72 -- TTXSamples/TTXResizeMenu/CMakeLists.txt | 63 -- TTXSamples/TTXResizeWin/CMakeLists.txt | 50 - TTXSamples/TTXShowCommandLine/CMakeLists.txt | 59 -- TTXSamples/TTXViewMode/CMakeLists.txt | 79 -- TTXSamples/TTXttyrec/CMakeLists.txt | 120 --- TTXSamples/ttxtest/CMakeLists.txt | 48 - buildtools/checkperl.cmake | 37 - buildtools/getperl.cmake | 25 - buildtools/install_cygwin.cmake | 107 -- buildtools/install_innosetup.cmake | 47 - buildtools/install_linkchecker.cmake | 27 - buildtools/install_msys2.cmake | 57 -- buildtools/install_sbapplocale.cmake | 39 - buildtools/nasm.cmake | 20 - buildtools/svnrev/svnrev.cmake | 70 -- ci_scripts/build_appveyor.cmake | 92 -- cygwin/CMakeLists.txt | 49 - cygwin/cyglaunch/CMakeLists.txt | 81 -- cygwin/cyglib/CMakeLists.txt | 19 - cygwin/cygtool/CMakeLists.txt | 81 -- cygwin/cygtool/build_cygtool.cmake | 45 - cygwin/cygtool_build/CMakeLists.txt | 46 - doc/CMakeLists.txt | 30 - doc/chm.cmake | 10 - doc/en/CMakeLists.txt | 96 -- doc/ja/CMakeLists.txt | 96 -- doc_internal/CMakeLists.txt | 36 - doc_internal/doxygen.cmake | 7 - doc_internal/global.cmake | 18 - gtags_update.cmake | 29 - installer/CMakeLists.txt | 58 -- installer/install.cmake | 108 -- installer/iscc_signed.cmake | 44 - installer/release/lang/CMakeLists.txt | 62 -- installer/release/lang_utf16le/CMakeLists.txt | 62 -- libcompatwin/CMakeLists.txt | 36 - libcompatwin/test/CMakeLists.txt | 14 - libs/VSToolchain.cmake | 10 - libs/buildall.cmake | 87 -- libs/buildargon2.cmake | 16 - libs/buildcjson.cmake | 16 - libs/buildlibressl.cmake | 134 --- libs/buildoniguruma.cmake | 117 --- libs/buildopenssl3.cmake | 341 ------- libs/buildsfmt.cmake | 142 --- libs/buildzlib.cmake | 103 -- libs/download.cmake | 347 ------- libs/lib_SFMT.cmake | 24 - libs/lib_libressl.cmake | 24 - libs/lib_oniguruma.cmake | 28 - libs/lib_openssl.cmake | 27 - libs/lib_openssl3.cmake | 33 - libs/lib_zlib.cmake | 23 - libs/openssl11.cmake | 387 -------- libs/script_support.cmake | 55 - mingw.toolchain.cmake | 71 -- teraterm/CMakeLists.txt | 46 - teraterm/common/CMakeLists.txt | 123 --- .../common/ico/ico_scripts/icon_combine.cmake | 95 -- .../common/ico/ico_scripts/icon_extract.cmake | 55 - teraterm/keycode/CMakeLists.txt | 106 -- teraterm/layer_for_unicode/CMakeLists.txt | 114 --- teraterm/libmingw/CMakeLists.txt | 16 - teraterm/libmingw/test/CMakeLists.txt | 82 -- teraterm/susie_plugin/CMakeLists.txt | 83 -- teraterm/susie_plugin/extlib/extlib.cmake | 79 -- .../patched_file/libpng-1.6.37/CMakeLists.txt | 936 ------------------ .../patched_file/zlib-1.2.11/CMakeLists.txt | 256 ----- teraterm/teraterm/CMakeLists.txt | 492 --------- teraterm/ttpcmn/CMakeLists.txt | 124 --- teraterm/ttpmacro/CMakeLists.txt | 168 ---- tools/CMakeLists.txt | 17 - tools/lscom/CMakeLists.txt | 66 -- tools/ttbroadcast/CMakeLists.txt | 40 - tools/ttreg/CMakeLists.txt | 33 - ttpmenu/CMakeLists.txt | 127 --- ttssh2/CMakeLists.txt | 11 - ttssh2/argon2/CMakeLists.txt | 48 - ttssh2/libsshagentc/CMakeLists.txt | 18 - ttssh2/libsshagentc/skelton/CMakeLists.txt | 13 - ttssh2/libsshagentc/sshagentc/CMakeLists.txt | 52 - .../sshagentc_tool/CMakeLists.txt | 30 - ttssh2/matcher/CMakeLists.txt | 17 - ttssh2/ttxssh/CMakeLists.txt | 304 ------ 98 files changed, 8617 deletions(-) delete mode 100644 CMakeLists.txt delete mode 100644 TTProxy/CMakeLists.txt delete mode 100644 TTXKanjiMenu/CMakeLists.txt delete mode 100644 TTXSamples/CMakeLists.txt delete mode 100644 TTXSamples/TTXAlwaysOnTop/CMakeLists.txt delete mode 100644 TTXSamples/TTXCallSysMenu/CMakeLists.txt delete mode 100644 TTXSamples/TTXChangeFontSize/CMakeLists.txt delete mode 100644 TTXSamples/TTXCheckUpdate/CMakeLists.txt delete mode 100644 TTXSamples/TTXCommandLineOpt/CMakeLists.txt delete mode 100644 TTXSamples/TTXCopyIniFile/CMakeLists.txt delete mode 100644 TTXSamples/TTXFixedWinSize/CMakeLists.txt delete mode 100644 TTXSamples/TTXKcodeChange/CMakeLists.txt delete mode 100644 TTXSamples/TTXOutputBuffering/CMakeLists.txt delete mode 100644 TTXSamples/TTXRecurringCommand/CMakeLists.txt delete mode 100644 TTXSamples/TTXResizeMenu/CMakeLists.txt delete mode 100644 TTXSamples/TTXResizeWin/CMakeLists.txt delete mode 100644 TTXSamples/TTXShowCommandLine/CMakeLists.txt delete mode 100644 TTXSamples/TTXViewMode/CMakeLists.txt delete mode 100644 TTXSamples/TTXttyrec/CMakeLists.txt delete mode 100644 TTXSamples/ttxtest/CMakeLists.txt delete mode 100644 buildtools/checkperl.cmake delete mode 100644 buildtools/getperl.cmake delete mode 100644 buildtools/install_cygwin.cmake delete mode 100644 buildtools/install_innosetup.cmake delete mode 100644 buildtools/install_linkchecker.cmake delete mode 100644 buildtools/install_msys2.cmake delete mode 100644 buildtools/install_sbapplocale.cmake delete mode 100644 buildtools/nasm.cmake delete mode 100644 buildtools/svnrev/svnrev.cmake delete mode 100644 ci_scripts/build_appveyor.cmake delete mode 100644 cygwin/CMakeLists.txt delete mode 100644 cygwin/cyglaunch/CMakeLists.txt delete mode 100644 cygwin/cyglib/CMakeLists.txt delete mode 100644 cygwin/cygtool/CMakeLists.txt delete mode 100644 cygwin/cygtool/build_cygtool.cmake delete mode 100644 cygwin/cygtool_build/CMakeLists.txt delete mode 100644 doc/CMakeLists.txt delete mode 100644 doc/chm.cmake delete mode 100644 doc/en/CMakeLists.txt delete mode 100644 doc/ja/CMakeLists.txt delete mode 100644 doc_internal/CMakeLists.txt delete mode 100644 doc_internal/doxygen.cmake delete mode 100644 doc_internal/global.cmake delete mode 100644 gtags_update.cmake delete mode 100644 installer/CMakeLists.txt delete mode 100644 installer/install.cmake delete mode 100644 installer/iscc_signed.cmake delete mode 100644 installer/release/lang/CMakeLists.txt delete mode 100644 installer/release/lang_utf16le/CMakeLists.txt delete mode 100644 libcompatwin/CMakeLists.txt delete mode 100644 libcompatwin/test/CMakeLists.txt delete mode 100644 libs/VSToolchain.cmake delete mode 100644 libs/buildall.cmake delete mode 100644 libs/buildargon2.cmake delete mode 100644 libs/buildcjson.cmake delete mode 100644 libs/buildlibressl.cmake delete mode 100644 libs/buildoniguruma.cmake delete mode 100644 libs/buildopenssl3.cmake delete mode 100644 libs/buildsfmt.cmake delete mode 100644 libs/buildzlib.cmake delete mode 100644 libs/download.cmake delete mode 100644 libs/lib_SFMT.cmake delete mode 100644 libs/lib_libressl.cmake delete mode 100644 libs/lib_oniguruma.cmake delete mode 100644 libs/lib_openssl.cmake delete mode 100644 libs/lib_openssl3.cmake delete mode 100644 libs/lib_zlib.cmake delete mode 100644 libs/openssl11.cmake delete mode 100644 libs/script_support.cmake delete mode 100644 mingw.toolchain.cmake delete mode 100644 teraterm/CMakeLists.txt delete mode 100644 teraterm/common/CMakeLists.txt delete mode 100644 teraterm/common/ico/ico_scripts/icon_combine.cmake delete mode 100644 teraterm/common/ico/ico_scripts/icon_extract.cmake delete mode 100644 teraterm/keycode/CMakeLists.txt delete mode 100644 teraterm/layer_for_unicode/CMakeLists.txt delete mode 100644 teraterm/libmingw/CMakeLists.txt delete mode 100644 teraterm/libmingw/test/CMakeLists.txt delete mode 100644 teraterm/susie_plugin/CMakeLists.txt delete mode 100644 teraterm/susie_plugin/extlib/extlib.cmake delete mode 100644 teraterm/susie_plugin/extlib/patched_file/libpng-1.6.37/CMakeLists.txt delete mode 100644 teraterm/susie_plugin/extlib/patched_file/zlib-1.2.11/CMakeLists.txt delete mode 100644 teraterm/teraterm/CMakeLists.txt delete mode 100644 teraterm/ttpcmn/CMakeLists.txt delete mode 100644 teraterm/ttpmacro/CMakeLists.txt delete mode 100644 tools/CMakeLists.txt delete mode 100644 tools/lscom/CMakeLists.txt delete mode 100644 tools/ttbroadcast/CMakeLists.txt delete mode 100644 tools/ttreg/CMakeLists.txt delete mode 100644 ttpmenu/CMakeLists.txt delete mode 100644 ttssh2/CMakeLists.txt delete mode 100644 ttssh2/argon2/CMakeLists.txt delete mode 100644 ttssh2/libsshagentc/CMakeLists.txt delete mode 100644 ttssh2/libsshagentc/skelton/CMakeLists.txt delete mode 100644 ttssh2/libsshagentc/sshagentc/CMakeLists.txt delete mode 100644 ttssh2/libsshagentc/sshagentc_tool/CMakeLists.txt delete mode 100644 ttssh2/matcher/CMakeLists.txt delete mode 100644 ttssh2/ttxssh/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index 1300db158..000000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,279 +0,0 @@ - -cmake_minimum_required(VERSION 3.11) - -project(teraterm_all) - -if(MSVC) - if(((NOT DEFINED CMAKE_GENERATOR_PLATFORM) OR - (CMAKE_GENERATOR_PLATFORM STREQUAL "")) OR - (NOT (CMAKE_GENERATOR_PLATFORM STREQUAL "Win32" OR - CMAKE_GENERATOR_PLATFORM STREQUAL "x64" OR - CMAKE_GENERATOR_PLATFORM STREQUAL "ARM64"))) - message(FATAL_ERROR "CMAKE_GENERATOR_PLATFORM must be Win32, x64, or ARM64 (CMAKE_GENERATOR_PLATFORM=${CMAKE_GENERATOR_PLATFORM})") - endif() - set(ARCHITECTURE ${CMAKE_VS_PLATFORM_NAME}) -elseif(MINGW) - if(((NOT DEFINED ARCHITECTURE) OR - (ARCHITECTURE STREQUAL "")) OR - (NOT (ARCHITECTURE STREQUAL "i686" OR - ARCHITECTURE STREQUAL "x86_64"))) - message(FATAL_ERROR "ARCHITECTURE must be i686 or x86_64 (CMAKE_GENERATOR_PLATFORM=${CMAKE_GENERATOR_PLATFORM})") - endif() -else() - message(FATAL_ERROR "?") -endif() - -set(SUPPORT_OLD_WINDOWS_DEFAULT OFF) -set(BMP_ICO_DEFAULT OFF) -if(MSVC AND (MSVC_VERSION LESS_EQUAL 1400)) - # Visual Studio 2005 (1400=VS2005) - set(SUPPORT_OLD_WINDOWS_DEFAULT ON) - set(BMP_ICO_DEFAULT ON) -endif() -if(CMAKE_HOST_UNIX AND (NOT DEFINED CMAKE_TOOLCHAIN_FILE)) - message(FATAL_ERROR "add option -DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_LIST_DIR}/mingw.toolchain.cmake") -endif() - -option(SUPPORT_OLD_WINDOWS "windows 95 support" ${SUPPORT_OLD_WINDOWS_DEFAULT}) -option(BMP_ICO "icon(*.ico) file include only bmp(not png)" ${BMP_ICO_DEFAULT}) -option(ENABLE_TTXSAMPLES "TTXSamples" ON) -option(MORE_WARNING "stronger warning" OFF) -option(TTXSSH "ttxssh" ON) -option(DYNAMIC_CODE_ANALYSIS "Dynamic code analysis" OFF) - -set_property(GLOBAL PROPERTY USE_FOLDERS ON) -get_property(IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) - -set(CMAKE_CONFIGURATION_TYPES "Debug;Release") -set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) -set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) - -# 出力フォルダ -if("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.12.0") - set(BINARY_DIR "${CMAKE_BINARY_DIR}/$") - else() - # 3.11のときはとりあえず debug ビルドと仮定する - set(BINARY_DIR "${CMAKE_BINARY_DIR}/debug") - endif() -else() - set(BINARY_DIR "${CMAKE_BINARY_DIR}") -endif() - -#set(_WIN32_WINNT "0x0a00") # 0x0a00=_WIN32_WINNT_WIN10 -#set(_WIN32_WINNT "0x0501") # Tera Term がビルドできる最小値 -if(MSVC AND (MSVC_VERSION LESS_EQUAL 1500)) - # Visual Studio 2005, 2008 (1500=VS2008) - set(_WIN32_WINNT "0x0501") - if(1) - set(TTXSSH OFF) - else() - # この組み合わせはlibputtyがビルドできないので今のところ実現しない - set(TTXSSH ON) - set(TTXSSH_LIBRESSL OFF) - set(TTXSSH_OPENSSL3 ON) - endif() -endif() -if(${BMP_ICO}) - # cmake 3.11でRC_FLAGSが反映されない?,C_FLAGSも設定するとok - # bmp形式icoについて teraterm/teraterm/common/ico/ico_scripts/readme.md 参照 - set(CMAKE_RC_FLAGS "${CMAKE_RC_FLAGS} /DBMP_ICO") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /DBMP_ICO") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /DBMP_ICO") -endif() - -if(MSVC) - # https://www.leeholmes.com/blog/2017/02/27/differences-between-visual-studio-2012-2013-and-2015/ - if(_WIN32_WINNT) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /D_WIN32_WINNT=${_WIN32_WINNT}") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /D_WIN32_WINNT=${_WIN32_WINNT}") - endif() - string(REPLACE "/MD" "/MT" CMAKE_C_FLAGS_DEBUG ${CMAKE_C_FLAGS_DEBUG}) - string(REPLACE "/MD" "/MT" CMAKE_C_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELEASE}) - string(REPLACE "/MD" "/MT" CMAKE_CXX_FLAGS_DEBUG ${CMAKE_CXX_FLAGS_DEBUG}) - string(REPLACE "/MD" "/MT" CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELEASE}) - if (MORE_WARNING) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4") - if(${MSVC_VERSION} GREATER_EQUAL 1910) # Visual Studio 2017以上の時 - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /analyze") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /analyze") - endif() - else() - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /D_CRT_SECURE_NO_DEPRECATE") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /D_CRT_SECURE_NO_DEPRECATE") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W3") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W3") - endif() - set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /GF /Gy /Zi") - set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /GF /Gy /Zi") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /MP") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /source-charset:utf-8") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /source-charset:utf-8") - if(${MSVC_VERSION} GREATER_EQUAL 1910) - # Visual Studio 2017以上の時 - set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /ZI") - set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /ZI") - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /SAFESEH:NO") - set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /SAFESEH:NO") - endif() - if(DYNAMIC_CODE_ANALYSIS) - if(${MSVC_VERSION} GREATER_EQUAL 1920) - # Visual Studio 2019以上の時 - set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /Zi /fsanitize=address") - set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /Zi /fsanitize=address") - set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /fsanitize=address") - set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /fsanitize=address") - endif() - endif() -elseif(MINGW) - if(_WIN32_WINNT) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_WIN32_WINNT=${_WIN32_WINNT}") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D_WIN32_WINNT=${_WIN32_WINNT}") - endif() - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D__USE_MINGW_ANSI_STDIO=0") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D__USE_MINGW_ANSI_STDIO=0") - set(CMAKE_C_CXX_WARNING_FLAGS "-Wall -Wextra") - if (NOT MORE_WARNING) - set(CMAKE_C_CXX_WARNING_FLAGS "${CMAKE_C_CXX_WARNING_FLAGS} -Wno-unused-parameter -Wno-sign-compare") - set(CMAKE_C_WARNING_FLAGS "${CMAKE_C_CXX_WARNING_FLAGS} -Wno-pointer-sign") - else() - set(CMAKE_C_CXX_WARNING_FLAGS "${CMAKE_C_CXX_WARNING_FLAGS}") - set(CMAKE_C_WARNING_FLAGS "${CMAKE_C_CXX_WARNING_FLAGS}") - endif() - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_C_WARNING_FLAGS} -static -ffunction-sections -fdata-sections ${C_ONLY_FLAGS}") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_C_CXX_WARNING_FLAGS} -static -ffunction-sections -fdata-sections") - set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D_DEBUG") - set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_DEBUG") - if (CMAKE_C_COMPILER_ID STREQUAL "GNU") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -static-libgcc -static-libstdc++") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libgcc -static-libstdc++") - endif() - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static-libgcc") - set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -static-libgcc") - set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} -s -Wl,--gc-sections") - set(CMAKE_SHARED_LINKER_FLAGS_RELEASE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE} -s -Wl,--gc-sections") -endif() - -if(SUPPORT_OLD_WINDOWS) - message("SUPPORT_OLD_WINDOWS=ON") -endif() - -### tool -# perl -include(${CMAKE_CURRENT_LIST_DIR}/buildtools/checkperl.cmake) -message("perl=${PERL}") - -# svn / git-svn -if(EXISTS "${CMAKE_SOURCE_DIR}/.git") - # git (git-svn) - find_package(Git) - message("git=${GIT_EXECUTABLE}") -elseif(EXISTS "${CMAKE_SOURCE_DIR}/.svn") - # svn - find_package(Subversion) - message("svn=${Subversion_SVN_EXECUTABLE}") -endif() - -if(NOT $ENV{USER}) - set(USER $ENV{USER}) -elseif(NOT $ENV{USERNAME}) - set(USER $ENV{USERNAME}) -else() - set(USER "NONAME") -endif() - -# ソースツリー内に生成ファイルが存在していたら削除する -if(EXISTS "${CMAKE_SOURCE_DIR}/teraterm/ttpdlg/svnversion.h") - file(REMOVE "${CMAKE_SOURCE_DIR}/teraterm/ttpdlg/svnversion.h") -endif() -if(EXISTS "${CMAKE_SOURCE_DIR}/teraterm/common/svnversion.h") - file(REMOVE "${CMAKE_SOURCE_DIR}/teraterm/common/svnversion.h") -endif() - -if((NOT EXISTS "${CMAKE_BINARY_DIR}/build_config.cmake") OR - (NOT EXISTS "${CMAKE_BINARY_DIR}/teraterm/common/svnversion.h") OR - (NOT EXISTS "${CMAKE_SOURCE_DIR}/buildtools/svnrev/sourcetreeinfo.bat") OR - (NOT EXISTS "${CMAKE_SOURCE_DIR}/installer/build_config.isl")) - file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/teraterm/common) - execute_process( - COMMAND ${CMAKE_COMMAND} -DPERL=${PERL} -DSOURCE_DIR=${CMAKE_SOURCE_DIR} -DBINARY_DIR=${CMAKE_BINARY_DIR} -DGIT_EXECUTABLE=${GIT_EXECUTABLE} -DSVN_EXECUTABLE=${Subversion_SVN_EXECUTABLE} -DARCHITECTURE=${ARCHITECTURE} -P svnrev.cmake - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/buildtools/svnrev - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "execute error ${PERL}") - endif() -endif() -include(${CMAKE_BINARY_DIR}/build_config.cmake) - -if(DEFINED GITVERSION) - message("git hash=\"${GITVERSION}\"") - set(REVISION_TIME_USER "${DATE}_${TIME}-${GITVERSION}-${USER}") -elseif(DEFINED SVNVERSION) - message("svn revision=\"${SVNVERSION}\"") - set(REVISION_TIME_USER "r${SVNVERSION}-${DATE}_${TIME}-${USER}") -else() - set(REVISION_TIME_USER "${DATE}_${TIME}-unknown-${USER}") -endif() -if(NOT DEFINED SNAPSHOT_DIR) - set(SNAPSHOT_DIR "teraterm-${VERSION}-${ARCHITECTURE}-${REVISION_TIME_USER}") -endif() -set(CMAKE_INSTALL_PREFIX "${PROJECT_BINARY_DIR}/${SNAPSHOT_DIR}") -if(NOT DEFINED SETUP_EXE) - # not need ".exe" - if(RELEASE) - set(SETUP_EXE "teraterm-${VERSION}-${ARCHITECTURE}") - else() - set(SETUP_EXE "teraterm-${VERSION}-${ARCHITECTURE}-${REVISION_TIME_USER}") - endif() -endif() -if(NOT DEFINED SETUP_ZIP) - if(RELEASE) - set(SETUP_ZIP "teraterm-${VERSION}-${ARCHITECTURE}.zip") - else() - set(SETUP_ZIP "teraterm-${VERSION}-${ARCHITECTURE}-${REVISION_TIME_USER}.zip") - endif() -endif() - -### subdirectories -add_subdirectory(teraterm) -add_subdirectory(ttpmenu) -add_subdirectory(TTProxy) -if(TTXSSH) - add_subdirectory(ttssh2) -endif(TTXSSH) -add_subdirectory(TTXKanjiMenu) -if(${ENABLE_TTXSAMPLES}) - add_subdirectory(TTXSamples) -endif() -add_subdirectory(installer) -add_subdirectory(doc) -add_subdirectory(doc_internal) -add_subdirectory(tools) -if(EXISTS ${CMAKE_CURRENT_LIST_DIR}/TTXAdditional/CMakeLists.txt) - add_subdirectory(TTXAdditional) -endif() -add_subdirectory(cygwin) -if(SUPPORT_OLD_WINDOWS AND WIN32 AND CMAKE_SIZEOF_VOID_P EQUAL 4) - # 32bitのとき - add_subdirectory(libcompatwin) -endif() - -### create buildinfo.txt -configure_file( - buildinfo.txt.in - buildinfo.txt - @ONLY) - -### make_installer_cmake.bat/sh -if(CMAKE_HOST_WIN32) - file(WRITE "${CMAKE_BINARY_DIR}/make_installer_cmake.bat" - "pushd %~dp0\n" - "\"${CMAKE_COMMAND}\" -P \"${CMAKE_SOURCE_DIR}/installer/install.cmake\"\n" - "pause\n") -else() - file(WRITE "${CMAKE_BINARY_DIR}/make_installer_cmake.sh" - "\"${CMAKE_COMMAND}\" -P \"${CMAKE_SOURCE_DIR}/installer/install.cmake\"\n") -endif() diff --git a/TTProxy/CMakeLists.txt b/TTProxy/CMakeLists.txt deleted file mode 100644 index 5db239aa3..000000000 --- a/TTProxy/CMakeLists.txt +++ /dev/null @@ -1,138 +0,0 @@ -project("TTXProxy") - -add_library( - ${PROJECT_NAME} SHARED - Hooker.h - Logger.h - ProxyWSockHook.h - resource.h - StdAfx.cpp - StdAfx.h - TTProxy.cpp - TTProxy.h - TTProxy.rc - TTX.def - ) - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../teraterm/common/ttlib.h - ../teraterm/common/i18n.h - ../teraterm/common/ttplugin.h - ../teraterm/common/tttypes.h - ../teraterm/common/tt-version.h - ../teraterm/common/codeconv.h - ../teraterm/common/dlglib.h - ../teraterm/teraterm/ttdialog.h - ../teraterm/teraterm/ttfileio.h - ../teraterm/teraterm/ttsetup.h - ../teraterm/teraterm/ttwsk.h - ) - -source_group( - "common" - REGULAR_EXPRESSION - "teraterm\/common\/") - -target_sources( - ${PROJECT_NAME} - PRIVATE - YCL/include/YCL/Array.h - YCL/include/YCL/ComboBoxCtrl.h - YCL/include/YCL/Dialog.h - YCL/include/YCL/DynamicLinkLibrary.h - YCL/include/YCL/EditBoxCtrl.h - YCL/include/YCL/Enumeration.h - YCL/include/YCL/FileVersion.h - YCL/include/YCL/HASHCODE.h - YCL/include/YCL/Hashtable.h - YCL/include/YCL/IniFile.h - YCL/include/YCL/Integer.h - YCL/include/YCL/Object.h - YCL/include/YCL/Pointer.h - YCL/include/YCL/Resource.h - YCL/include/YCL/String.h - YCL/include/YCL/StringBuffer.h - YCL/include/YCL/StringUtil.h - YCL/include/YCL/ValueCtrl.h - YCL/include/YCL/Vector.h - YCL/include/YCL/WString.h - YCL/include/YCL/WStringBuffer.h - YCL/include/YCL/Window.h - YCL/include/YCL/common.h - ) - -source_group( - "YCL" - REGULAR_EXPRESSION - "YCL\/include\/") - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../teraterm/teraterm - YCL/include - . - ) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - ttpcmn - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) -endif(SUPPORT_OLD_WINDOWS) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - ws2_32 - version - gdi32 - comdlg32 - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . - ) diff --git a/TTXKanjiMenu/CMakeLists.txt b/TTXKanjiMenu/CMakeLists.txt deleted file mode 100644 index f1fe35699..000000000 --- a/TTXKanjiMenu/CMakeLists.txt +++ /dev/null @@ -1,60 +0,0 @@ -project("ttxkanjimenu") - -add_library( - ${PROJECT_NAME} SHARED - resource.h - ttxkanjimenu.c - ttxkanjimenu.h - ttxkanjimenu.rc - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - mingw_dll_tls - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../teraterm/teraterm - ) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - ttpcmn - common_static - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . - ) diff --git a/TTXSamples/CMakeLists.txt b/TTXSamples/CMakeLists.txt deleted file mode 100644 index 7a4b27b4b..000000000 --- a/TTXSamples/CMakeLists.txt +++ /dev/null @@ -1,49 +0,0 @@ - -add_subdirectory(TTXAlwaysOnTop) -set_target_properties(TTXAlwaysOnTop PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXCallSysMenu) -set_target_properties(TTXCallSysMenu PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXCommandLineOpt) -set_target_properties(TTXCommandLineOpt PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXCopyIniFile) -set_target_properties(TTXCopyIniFile PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXFixedWinSize) -set_target_properties(TTXFixedWinSize PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXKcodeChange) -set_target_properties(TTXKcodeChange PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXOutputBuffering) -set_target_properties(TTXOutputBuffering PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXRecurringCommand) -set_target_properties(TTXRecurringCommand PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXResizeMenu) -set_target_properties(TTXResizeMenu PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXResizeWin) -set_target_properties(TTXResizeWin PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXShowCommandLine) -set_target_properties(TTXShowCommandLine PROPERTIES FOLDER TTXSamples) - -add_subdirectory(ttxtest) -set_target_properties(TTXtest PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXttyrec) -set_target_properties(TTXttyrec PROPERTIES FOLDER TTXSamples) -set_target_properties(TTXttyplay PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXViewMode) -set_target_properties(TTXViewMode PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXCheckUpdate) -set_target_properties(TTXCheckUpdate PROPERTIES FOLDER TTXSamples) - -add_subdirectory(TTXChangeFontSize) -set_target_properties(TTXChangeFontSize PROPERTIES FOLDER TTXSamples) diff --git a/TTXSamples/TTXAlwaysOnTop/CMakeLists.txt b/TTXSamples/TTXAlwaysOnTop/CMakeLists.txt deleted file mode 100644 index e50bd7d76..000000000 --- a/TTXSamples/TTXAlwaysOnTop/CMakeLists.txt +++ /dev/null @@ -1,55 +0,0 @@ -project("TTXAlwaysOnTop") - -add_library( - ${PROJECT_NAME} SHARED - TTXAlwaysOnTop.c - ReadMe.txt - ReadMe-ja.txt - ) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - ttpcmn -) - - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - mingw_dll_tls - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm -) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXCallSysMenu/CMakeLists.txt b/TTXSamples/TTXCallSysMenu/CMakeLists.txt deleted file mode 100644 index a0e8bde0b..000000000 --- a/TTXSamples/TTXCallSysMenu/CMakeLists.txt +++ /dev/null @@ -1,50 +0,0 @@ -project("TTXCallSysMenu") - -add_library( - ${PROJECT_NAME} SHARED - TTXCallSysMenu.c - ReadMe.txt - ReadMe-ja.txt - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ../../teraterm/common - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXChangeFontSize/CMakeLists.txt b/TTXSamples/TTXChangeFontSize/CMakeLists.txt deleted file mode 100644 index 03ba09683..000000000 --- a/TTXSamples/TTXChangeFontSize/CMakeLists.txt +++ /dev/null @@ -1,59 +0,0 @@ -cmake_minimum_required(VERSION 3.11) - -project("TTXChangeFontSize") - -if(USE_UNICODE_API) - add_definitions(-DUNICODE -D_UNICODE) -endif() - -include_directories( - ../../teraterm/teraterm - ../../teraterm/common -) - -add_library( - ${PROJECT_NAME} SHARED - TTXChangeFontSize.c - ReadMe.txt - ReadMe-ja.txt - LICENSE -) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static -) - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - mingw_dll_tls - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" -) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXCheckUpdate/CMakeLists.txt b/TTXSamples/TTXCheckUpdate/CMakeLists.txt deleted file mode 100644 index 92ce28cf7..000000000 --- a/TTXSamples/TTXCheckUpdate/CMakeLists.txt +++ /dev/null @@ -1,110 +0,0 @@ -project("TTXCheckUpdate") - -add_library( - ${PROJECT_NAME} SHARED - ttxcheckupdate.c - parse.h - parse.cpp - resource.rc - resource.h - # - ../../libs/cJSON/cJSON.h - ../../libs/cJSON/cJSON.c - # - ../../teraterm/common/codeconv.h - ../../teraterm/common/dlglib.h - ../../teraterm/common/getcontent.h - ${CMAKE_CURRENT_BINARY_DIR}/../../teraterm/common/svnversion.h - ) - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -source_group( - "common" - REGULAR_EXPRESSION - "teraterm\/common\/" - ) - -source_group( - "cJSON" - REGULAR_EXPRESSION - "..\/..\/libs\/cJSON\/" - ) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_compile_definitions( - TTXCheckUpdate - PRIVATE - -D CJSON_HIDE_SYMBOLS - ) - -if(MSVC_VERSION STRLESS 1600) - # VS2005(1400),2008(1500) (<2010(1600)) special define - set_source_files_properties( - ../../libs/cJSON/cJSON.c - PROPERTIES - COMPILE_FLAGS "-D NAN=0" - ) -endif() - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../libs/cJSON - ../../teraterm/teraterm -) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - ttpcmn - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) -endif(SUPPORT_OLD_WINDOWS) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - wininet.lib - ) - -#install( -# TARGETS ${PROJECT_NAME} -# RUNTIME -# DESTINATION . -#) diff --git a/TTXSamples/TTXCommandLineOpt/CMakeLists.txt b/TTXSamples/TTXCommandLineOpt/CMakeLists.txt deleted file mode 100644 index 1e830f61e..000000000 --- a/TTXSamples/TTXCommandLineOpt/CMakeLists.txt +++ /dev/null @@ -1,54 +0,0 @@ -project("TTXCommandLineOpt") - -add_library( - ${PROJECT_NAME} SHARED - TTXCommandLineOpt.c - ReadMe.txt - ReadMe-ja.txt - ) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - ttpcmn - ) - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - mingw_dll_tls - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ../../teraterm/common - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXCopyIniFile/CMakeLists.txt b/TTXSamples/TTXCopyIniFile/CMakeLists.txt deleted file mode 100644 index 1078a0707..000000000 --- a/TTXSamples/TTXCopyIniFile/CMakeLists.txt +++ /dev/null @@ -1,48 +0,0 @@ -project("TTXCopyIniFile") - -add_library( - ${PROJECT_NAME} SHARED - TTXCopyIniFile.c - ReadMe.txt - ReadMe-ja.txt - ) - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - mingw_dll_tls - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ../../teraterm/common - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXFixedWinSize/CMakeLists.txt b/TTXSamples/TTXFixedWinSize/CMakeLists.txt deleted file mode 100644 index 12aac7b82..000000000 --- a/TTXSamples/TTXFixedWinSize/CMakeLists.txt +++ /dev/null @@ -1,50 +0,0 @@ -project("TTXFixedWinSize") - -add_library( - ${PROJECT_NAME} SHARED - TTXFixedWinSize.c - ReadMe.txt - ReadMe-ja.txt - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ../../teraterm/common - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXKcodeChange/CMakeLists.txt b/TTXSamples/TTXKcodeChange/CMakeLists.txt deleted file mode 100644 index 1381500f9..000000000 --- a/TTXSamples/TTXKcodeChange/CMakeLists.txt +++ /dev/null @@ -1,45 +0,0 @@ -project("TTXKcodeChange") - -add_library( - ${PROJECT_NAME} SHARED - TTXKcodeChange.c - ReadMe.txt - ReadMe-ja.txt - ) - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ../../teraterm/common - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXOutputBuffering/CMakeLists.txt b/TTXSamples/TTXOutputBuffering/CMakeLists.txt deleted file mode 100644 index 1d44e8be8..000000000 --- a/TTXSamples/TTXOutputBuffering/CMakeLists.txt +++ /dev/null @@ -1,45 +0,0 @@ -project("TTXOutputBuffering") - -add_library( - ${PROJECT_NAME} SHARED - TTXOutputBuffering.c - ReadMe.txt - ReadMe-ja.txt - ) - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ../../teraterm/common - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXRecurringCommand/CMakeLists.txt b/TTXSamples/TTXRecurringCommand/CMakeLists.txt deleted file mode 100644 index 6a39037d7..000000000 --- a/TTXSamples/TTXRecurringCommand/CMakeLists.txt +++ /dev/null @@ -1,72 +0,0 @@ -project("TTXRecurringCommand") - -add_library( - ${PROJECT_NAME} SHARED - TTXRecurringCommand.c - TTXRecurringCommand.rc - ReadMe.txt - ReadMe-ja.txt - ../../teraterm/common/dlglib.h - ) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - ttpcmn - ) - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -source_group( - "common" - REGULAR_EXPRESSION - "teraterm\/common\/" - ) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - gdi32 - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXResizeMenu/CMakeLists.txt b/TTXSamples/TTXResizeMenu/CMakeLists.txt deleted file mode 100644 index 35eb087ef..000000000 --- a/TTXSamples/TTXResizeMenu/CMakeLists.txt +++ /dev/null @@ -1,63 +0,0 @@ -project("TTXResizeMenu") - -add_library( - ${PROJECT_NAME} SHARED - TTXResizeMenu.c - ReadMe.txt - ReadMe-ja.txt - ) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - ttpcmn - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXResizeWin/CMakeLists.txt b/TTXSamples/TTXResizeWin/CMakeLists.txt deleted file mode 100644 index 4b605d4c1..000000000 --- a/TTXSamples/TTXResizeWin/CMakeLists.txt +++ /dev/null @@ -1,50 +0,0 @@ -project("TTXResizeWin") - -add_library( - ${PROJECT_NAME} SHARED - TTXResizeWin.c - ReadMe.txt - ReadMe-ja.txt - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ../../teraterm/common - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXShowCommandLine/CMakeLists.txt b/TTXSamples/TTXShowCommandLine/CMakeLists.txt deleted file mode 100644 index 6cf0f7498..000000000 --- a/TTXSamples/TTXShowCommandLine/CMakeLists.txt +++ /dev/null @@ -1,59 +0,0 @@ -project("TTXShowCommandLine") - -add_library( - ${PROJECT_NAME} SHARED - TTXShowCommandLine.c - ReadMe.txt - ReadMe-ja.txt -) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static -) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - mingw_dll_tls - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ../../teraterm/common - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXViewMode/CMakeLists.txt b/TTXSamples/TTXViewMode/CMakeLists.txt deleted file mode 100644 index fe5814cd3..000000000 --- a/TTXSamples/TTXViewMode/CMakeLists.txt +++ /dev/null @@ -1,79 +0,0 @@ -project("TTXViewMode") - -add_library( - ${PROJECT_NAME} SHARED - resource.h - TTXViewMode.c - TTXViewMode.h - TTXViewMode.rc - ReadMe.txt - ReadMe-ja.txt - ../../teraterm/common/dlglib.h - ) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - ttpcmn - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -source_group( - "common" - REGULAR_EXPRESSION - "teraterm\/common\/" - ) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - gdi32 - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/TTXttyrec/CMakeLists.txt b/TTXSamples/TTXttyrec/CMakeLists.txt deleted file mode 100644 index e3cdf2caa..000000000 --- a/TTXSamples/TTXttyrec/CMakeLists.txt +++ /dev/null @@ -1,120 +0,0 @@ -project(TTXttyrec) - -add_library( - TTXttyplay SHARED - TTXttyplay.c - gettimeofday.c - gettimeofday.h - ReadMe.txt - ReadMe-ja.txt - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - TTXttyplay - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - TTXttyplay - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - TTXttyplay - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - target_link_libraries( - TTXttyplay - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -target_include_directories( - TTXttyplay - PRIVATE - ../../teraterm/teraterm - ) - -target_link_libraries( - TTXttyplay - PRIVATE - common_static - ttpcmn - # - comdlg32 - ) - -add_library( - TTXttyrec SHARED - TTXttyrec.c - gettimeofday.c - gettimeofday.h - ReadMe.txt - ReadMe-ja.txt - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - TTXttyrec - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - TTXttyrec - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - TTXttyrec - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - target_link_libraries( - TTXttyrec - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -target_include_directories( - TTXttyrec - PRIVATE - ../../teraterm/teraterm - ) - -target_link_libraries( - TTXttyrec - PRIVATE - common_static - ttpcmn - # - comdlg32 - ) - -set_target_properties( - TTXttyrec TTXttyplay - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -install( - TARGETS TTXttyrec TTXttyplay - RUNTIME - DESTINATION . -) diff --git a/TTXSamples/ttxtest/CMakeLists.txt b/TTXSamples/ttxtest/CMakeLists.txt deleted file mode 100644 index 7602ca310..000000000 --- a/TTXSamples/ttxtest/CMakeLists.txt +++ /dev/null @@ -1,48 +0,0 @@ -project("TTXtest") - -add_library( - ${PROJECT_NAME} SHARED - ttxtest.c - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ../../teraterm/common - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . -) diff --git a/buildtools/checkperl.cmake b/buildtools/checkperl.cmake deleted file mode 100644 index 94a4b537e..000000000 --- a/buildtools/checkperl.cmake +++ /dev/null @@ -1,37 +0,0 @@ -if (MSVC) - find_program( - PERL perl.exe - HINTS ${CMAKE_CURRENT_LIST_DIR}/cygwin64/bin - HINTS ${CMAKE_CURRENT_LIST_DIR}/perl/perl/bin - HINTS c:/Strawberry/perl/bin - HINTS c:/Perl64/bin - HINTS c:/Perl/bin - HINTS c:/cygwin/usr/bin - HINTS c:/cygwin64/usr/bin - ) -elseif(MINGW AND (CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows")) - find_program( - PERL perl.exe - HINTS ${CMAKE_CURRENT_LIST_DIR}/perl/perl/bin - HINTS c:/Strawberry/perl/bin - HINTS c:/Perl64/bin - HINTS c:/Perl/bin - ) -else() - # (CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux") - find_program( - PERL perl - ) -endif() - -if ("${PERL}" STREQUAL "PERL-NOTFOUND") - if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Windows") - execute_process( - COMMAND ${CMAKE_COMMAND} -P getperl.cmake - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/buildtools - ) - set(PERL ${CMAKE_CURRENT_LIST_DIR}/perl/perl/bin/perl.exe) - else() - message("perl not installed") - endif() -endif() diff --git a/buildtools/getperl.cmake b/buildtools/getperl.cmake deleted file mode 100644 index 71bdb6534..000000000 --- a/buildtools/getperl.cmake +++ /dev/null @@ -1,25 +0,0 @@ -# cmake -P perl.cmake - -set(SRC_ARC "strawberry-perl-5.30.1.1-32bit.zip") -set(SRC_URL "http://strawberryperl.com/download/5.30.1.1/strawberry-perl-5.30.1.1-32bit.zip") -set(SRC_ARC_HASH_SHA256 cd9d7d5a3d0099752d6587770f4920b2b3818b16078e7b4dbf83f2aa2c037f70) -set(DOWN_DIR "${CMAKE_SOURCE_DIR}/download/perl") -set(INSTALL_DIR "${CMAKE_SOURCE_DIR}/perl") - -if(NOT EXISTS ${INSTALL_DIR}/perl/bin/perl.exe) - - file(DOWNLOAD - ${SRC_URL} - ${DOWN_DIR}/${SRC_ARC} - EXPECTED_HASH SHA256=${SRC_ARC_HASH_SHA256} - SHOW_PROGRESS - ) - - file(MAKE_DIRECTORY ${INSTALL_DIR}) - - execute_process( - COMMAND ${CMAKE_COMMAND} -E tar "xvf" ${DOWN_DIR}/${SRC_ARC} - WORKING_DIRECTORY ${INSTALL_DIR} - ) - -endif() diff --git a/buildtools/install_cygwin.cmake b/buildtools/install_cygwin.cmake deleted file mode 100644 index 16d9f3092..000000000 --- a/buildtools/install_cygwin.cmake +++ /dev/null @@ -1,107 +0,0 @@ -# install cygwin in this folder -# cmake -P install_cygwin.cmake -# cmake -DREMOVE_TMP=ON -P install_cygwin.cmake -set(CYGWIN_ROOT "${CMAKE_CURRENT_LIST_DIR}/cygwin64") -if(DEFINED ENV{REMOVE_TMP}) - set(REMOVE_TMP ON) -else() - option(REMOVE_TMP "" OFF) -endif() - -# cygroot -if(EXISTS "${CYGWIN_ROOT}") - file(MAKE_DIRECTORY "${CYGWIN_ROOT}") -endif() - -if("${CYGWIN_ROOT}" MATCHES "cygdrive") - # cygwin の cmake を使用するとpath(CYGWIN_ROOT) が /cygdrive/c.. となり - # setup.exe の --root オプションで処理できない - message(FATAL_ERROR "check CMAKE_COMMAND (${CMAKE_COMMAND})") -endif() - -############################## -# cygwin (64bit) latest - -# setup-x86_64.exe 2.937 -set(SETUP_URL "https://cygwin.com/setup-x86_64.exe") -set(SETUP_HASH_SHA256 "2c9f2fb56e1fb687b5d9680afa8f8b06e6214f0e483096af0eae1946431226c5") -set(SETUP "${CYGWIN_ROOT}/setup-x86_64.exe") - -set(DOWNLOAD_SITE "http://mirrors.kernel.org/sourceware/cygwin/") -set(PACKAGE "${CMAKE_CURRENT_LIST_DIR}/download/cygwin_package") - -# setup-x86_64.exe を準備 -set(HASH "0") -if(EXISTS ${SETUP}) - file(SHA256 ${SETUP} HASH) -endif() -if(NOT (${HASH} STREQUAL ${SETUP_HASH_SHA256})) - # DOWNLOAD - file(DOWNLOAD - ${SETUP_URL} - ${PACKAGE}/setup-x86_64.exe - EXPECTED_HASH SHA256=${SETUP_HASH_SHA256} - SHOW_PROGRESS - ) - file(COPY ${PACKAGE}/setup-x86_64.exe DESTINATION ${CYGWIN_ROOT}) -endif() - -# install packages -execute_process( - COMMAND ${SETUP} --quiet-mode --wait --no-admin --root ${CYGWIN_ROOT} --site ${DOWNLOAD_SITE} --local-package-dir ${PACKAGE} --upgrade-also --packages cmake,bash,tar,make,perl,gcc-core,gcc-g++,icoutils - WORKING_DIRECTORY ${CYGWIN_ROOT} -) -# install packages for notify -execute_process( - COMMAND ${SETUP} --quiet-mode --wait --no-admin --root ${CYGWIN_ROOT} --site ${DOWNLOAD_SITE} --local-package-dir ${PACKAGE} --upgrade-also--packages perl-JSON,perl-LWP-Protocol-https - WORKING_DIRECTORY ${CYGWIN_ROOT} -) - -# remove archives -if(REMOVE_TMP) - file(GLOB ARC_FILES "${PACKAGE}/http*") - file(REMOVE_RECURSE ${ARC_FILES}) -endif() - -############################## -# cygwin 32bit from time machine -# http://www.crouchingtigerhiddenfruitbat.org/Cygwin/timemachine.html - -#set(SETUP_EXE setup-x86_64-2.909.exe) -#set(SETUP_HASH_SHA256 b9219acd1241ffa4d38e19587f1ccc2854f951e451f3858efc9d2e1fe19d375c) -#set(DOWNLOAD_SITE "http://ctm.crouchingtigerhiddenfruitbat.org/pub/cygwin/circa/64bit/2021/10/28/174906") -set(SETUP_EXE setup-x86_64-2.924.exe) -set(SETUP_URL "http://ctm.crouchingtigerhiddenfruitbat.org/pub/cygwin/setup/snapshots/${SETUP_EXE}") -set(SETUP_HASH_SHA256 edd0a64dc65087ffe453ca94b267169b39458a983b29ac31320fcaa983d0f97e) -set(SETUP "${CYGWIN_ROOT}/${SETUP_EXE}") - -set(DOWNLOAD_SITE "http://ctm.crouchingtigerhiddenfruitbat.org/pub/cygwin/circa/64bit/2022/12/01/145510") -set(PACKAGE "${CMAKE_CURRENT_LIST_DIR}/download/cygwin32_package") - -# setup-x86_64-2.924.exe を準備 -set(HASH "0") -if(EXISTS ${SETUP}) - file(SHA256 ${SETUP} HASH) -endif() -if(NOT (${HASH} STREQUAL ${SETUP_HASH_SHA256})) - # DWONLOAD - file(DOWNLOAD - ${SETUP_URL} - ${PACKAGE}/${SETUP_EXE} - EXPECTED_HASH SHA256=${SETUP_HASH_SHA256} - SHOW_PROGRESS - ) - file(COPY ${PACKAGE}/${SETUP_EXE} DESTINATION ${CYGWIN_ROOT}) -endif() - -# install packages -execute_process( - COMMAND ${SETUP} -X --quiet-mode --wait --no-admin --root ${CYGWIN_ROOT} --site ${DOWNLOAD_SITE} --local-package-dir ${PACKAGE} --packages cygwin32-gcc-g++ - WORKING_DIRECTORY ${CYGWIN_ROOT} -) - -# remove archives -if(REMOVE_TMP) - file(GLOB ARC_FILES "${PACKAGE}/http*") - file(REMOVE_RECURSE ${ARC_FILES}) -endif() diff --git a/buildtools/install_innosetup.cmake b/buildtools/install_innosetup.cmake deleted file mode 100644 index 5c4e4bd06..000000000 --- a/buildtools/install_innosetup.cmake +++ /dev/null @@ -1,47 +0,0 @@ -# cmake -P innosetup.cmake -if(DEFINED ENV{REMOVE_TMP}) - set(REMOVE_TMP ON) -else() - option(REMOVE_TMP "" OFF) -endif() - -# innosetup 6.7.2 -set(INNOSETUP_EXE "innosetup-6.7.2.exe") -set(INNOSETUP_URL "https://github.com/jrsoftware/issrc/releases/download/is-6_7_2/${INNOSETUP_EXE}") -set(INNOSETUP_HASH "9f27f8386e554eb093336a1ca5c2dcacb7dbf04ab020889491d7ac53c38a12ff") -set(INNOSETUP_CHECK_FILE innosetup6/ISCC.exe) -set(INNOSETUP_CHECK_HASH "bb8d5f6cfaddc1446d1db2b900b056b8393faaeaf987bdfe25a2905702d2c9c6") - -# check innosetup -if(EXISTS ${CMAKE_CURRENT_LIST_DIR}/${INNOSETUP_CHECK_FILE}) - file(SHA256 ${CMAKE_CURRENT_LIST_DIR}/${INNOSETUP_CHECK_FILE} HASH) - if(${HASH} STREQUAL ${INNOSETUP_CHECK_HASH}) - return() - endif() - message("file ${CMAKE_CURRENT_LIST_DIR}/${INNOSETUP_CHECK_FILE}") - message("actual HASH=${HASH}") - message("expect HASH=${INNOSETUP_CHECK_HASH}") -endif() - -# download -message("download ${INNOSETUP_EXE} from ${INNOSETUP_URL}") -file(MAKE_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/download/innosetup6") -file(DOWNLOAD - ${INNOSETUP_URL} - ${CMAKE_CURRENT_LIST_DIR}/download/innosetup6/${INNOSETUP_EXE} - EXPECTED_HASH SHA256=${INNOSETUP_HASH} - SHOW_PROGRESS - ) - -# setup -if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/innosetup6") - file(REMOVE_RECURSE "${CMAKE_CURRENT_LIST_DIR}/innosetup6") -endif() -file(MAKE_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/innosetup6") -execute_process( - COMMAND ${CMAKE_CURRENT_LIST_DIR}/download/innosetup6/${INNOSETUP_EXE} /dir=. /CURRENTUSER /PORTABLE=1 /VERYSILENT - WORKING_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/innosetup6" - ) -if(REMOVE_TMP) - file(REMOVE_RECURSE "${CMAKE_CURRENT_LIST_DIR}/download/innosetup6") -endif() diff --git a/buildtools/install_linkchecker.cmake b/buildtools/install_linkchecker.cmake deleted file mode 100644 index a56926835..000000000 --- a/buildtools/install_linkchecker.cmake +++ /dev/null @@ -1,27 +0,0 @@ -# cmake -P install_linkchecker.cmake - -# linkchecker -set(LINKCHECKER_PL "${CMAKE_CURRENT_LIST_DIR}/linkchecker/linkchecker.pl") -set(LINKCHECKER_URL "https://raw.githubusercontent.com/saoyagi2/linkchecker/8c268c1f2706a2113c730e1798777ca05ee10e0d/linkchecker.pl") -set(LINKCHECKER_HASH "4ec2aeb5384a09b8eb53c117b5f39e5d2661e8592da02b4d2de9ad43e04385a5") - -# check linkchecker -if(EXISTS ${LINKCHECKER_PL}) - file(SHA256 ${LINKCHECKER_PL} HASH) - if(${HASH} STREQUAL ${LINKCHECKER_HASH}) - return() - endif() - message("file ${LINKCHECKER_PL}") - message("actual HASH=${HASH}") - message("expect HASH=${LINKCHECKER_HASH}") -endif() - -# download -message("download ${LINKCHECKER_PL} from ${LINKCHECKER_URL}") -file(MAKE_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/linkchecker") -file(DOWNLOAD - ${LINKCHECKER_URL} - ${LINKCHECKER_PL} - EXPECTED_HASH SHA256=${LINKCHECKER_HASH} - SHOW_PROGRESS - ) diff --git a/buildtools/install_msys2.cmake b/buildtools/install_msys2.cmake deleted file mode 100644 index 2db03a2e6..000000000 --- a/buildtools/install_msys2.cmake +++ /dev/null @@ -1,57 +0,0 @@ -# install msys2 in this folder -# cmake -P install_msys2.cmake -set(MSYS_ROOT "${CMAKE_CURRENT_LIST_DIR}/msys64") - -# msys2 root -if(EXISTS "${MSYS_ROOT}") - file(MAKE_DIRECTORY "${MSYS_ROOT}") -endif() - -set(SETUP_EXE "msys2-x86_64-20240727.exe") -set(SETUP_URL "https://github.com/msys2/msys2-installer/releases/download/2024-07-27/${SETUP_EXE}") -set(SETUP_HASH_SHA256 "20d452e66cc95f975b2a8c5d814ba02e92481071580e80a3e3502a391fff6d2a") -set(SETUP "${MSYS_ROOT}/${SETUP_EXE}") -set(PACMAN "${MSYS_ROOT}/usr/bin/pacman.exe") -set(PACKAGE "${CMAKE_CURRENT_LIST_DIR}/download/msys2_package") - -# メッセージを英語で表示 -set(ENV{LANG} "C") - -# msys2のセットアップを準備 -file(DOWNLOAD - ${SETUP_URL} - ${PACKAGE}/${SETUP_EXE} - EXPECTED_HASH SHA256=${SETUP_HASH_SHA256} - SHOW_PROGRESS -) -file(COPY ${PACKAGE}/${SETUP_EXE} DESTINATION ${MSYS_ROOT}) - -# install base -if(NOT EXISTS "${PACMAN}") - execute_process( - COMMAND ${SETUP} - in --confirm-command --accept-messages --root ${MSYS_ROOT} --cache-path ${PACKAGE} - WORKING_DIRECTORY ${MSYS_ROOT} - ) -endif() - -# update -execute_process( - COMMAND ${PACMAN} -Syuu --noconfirm --noprogressbar - --cachedir ${PACKAGE} - WORKING_DIRECTORY ${MSYS_ROOT} -) - -# install -# for msys2term -execute_process( - COMMAND ${PACMAN} -S --noconfirm --needed --noprogressbar - --cachedir ${PACKAGE} - msys/make msys/cmake msys/gcc - WORKING_DIRECTORY ${MSYS_ROOT} - ENCODING none -) - -# Tera Term -# mingw-w64-i686-cmake mingw-w64-i686-gcc mingw-w64-i686-clang -# mingw-w64-x86_64-cmake mingw-w64-x86_64-gcc mingw-w64-x86_64-clang diff --git a/buildtools/install_sbapplocale.cmake b/buildtools/install_sbapplocale.cmake deleted file mode 100644 index 01aa904d2..000000000 --- a/buildtools/install_sbapplocale.cmake +++ /dev/null @@ -1,39 +0,0 @@ -# cmake -P install_sbapplocale.cmake - -# sbapplocale -set(SBAPPLOCALE_EXE "${CMAKE_CURRENT_LIST_DIR}/sbapplocale/sbapplocale.exe") -set(SBAPPLOCALE_EXE_HASH "bcabc2d5ab34bff8f147d12b69e0a019d16cf6c06859ba765e4e68f20c948577") -set(SBAPPLOCALE_URL "http://www.magicnotes.com/steelbytes/SBAppLocale_ENG.zip") -set(SBAPPLOCALE_ZIP "${CMAKE_CURRENT_LIST_DIR}/download/sbapplocale/SBAppLocale_ENG.zip") -set(SBAPPLOCALE_ZIP_HASH "e9edfd32cd5f03b36fac024f814ab8dd38e4880f3e6faacdea92d0e4d671fac1") - -# check sbapplocale -if(EXISTS ${SBAPPLOCALE_EXE}) - file(SHA256 ${SBAPPLOCALE_EXE} HASH) - if(${HASH} STREQUAL ${SBAPPLOCALE_EXE_HASH}) - return() - endif() - message("file ${SBAPPLOCALE_EXE}") - message("actual HASH=${HASH}") - message("expect HASH=${SBAPPLOCALE_EXE_HASH}") -endif() - -# download -message("download ${SBAPPLOCALE_ZIP} from ${SBAPPLOCALE_URL}") -file(MAKE_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/download/sbapplocale") -file(DOWNLOAD - ${SBAPPLOCALE_URL} - ${SBAPPLOCALE_ZIP} - EXPECTED_HASH SHA256=${SBAPPLOCALE_ZIP_HASH} - SHOW_PROGRESS -) - -# setup -if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/sbapplocale") - file(REMOVE_RECURSE "${CMAKE_CURRENT_LIST_DIR}/sbapplocale") -endif() -file(MAKE_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/sbapplocale") -file(ARCHIVE_EXTRACT - INPUT ${SBAPPLOCALE_ZIP} - DESTINATION "${CMAKE_CURRENT_LIST_DIR}/sbapplocale" -) diff --git a/buildtools/nasm.cmake b/buildtools/nasm.cmake deleted file mode 100644 index 2292b7ec2..000000000 --- a/buildtools/nasm.cmake +++ /dev/null @@ -1,20 +0,0 @@ -# cmake -P nasm.cmake - -set(NASM_BASE "nasm-2.15.05") -set(NASM_ZIP "${NASM_BASE}-win32.zip") -set(NASM_URL "https://www.nasm.us/pub/nasm/releasebuilds/2.15.05/win32/${NASM_ZIP}") -set(NASM_HASH "258c7d1076e435511cf2fdf94e2281eadbdb9e3003fd57f356f446e2bce3119e") -file(MAKE_DIRECTORY "download/nasm") -file(DOWNLOAD - ${NASM_URL} - download/nasm/${NASM_ZIP} - EXPECTED_HASH SHA256=${NASM_HASH} - SHOW_PROGRESS - ) -if(EXISTS "nasm") - file(REMOVE_RECURSE "nasm") -endif() -execute_process( - COMMAND ${CMAKE_COMMAND} -E tar xvf download/nasm/${NASM_ZIP} - ) -file(RENAME "${NASM_BASE}" "nasm") diff --git a/buildtools/svnrev/svnrev.cmake b/buildtools/svnrev/svnrev.cmake deleted file mode 100644 index c3e777bf5..000000000 --- a/buildtools/svnrev/svnrev.cmake +++ /dev/null @@ -1,70 +0,0 @@ -# input -# PERL -# GIT_EXECUTABLE -# SVN_EXECUTABLE -# SOURCE_DIR (CMAKE_SOURCE_DIR), ソースツリーのルート -# BINARY_DIR (CMAKE_BINARY_DIR), バイナリツリーのルート - -set(CMAKE_SOURCE_DIR ${SOURCE_DIR}) -set(CMAKE_BINARY_DIR ${BINARY_DIR}) -set(SVNREV_PL ${CMAKE_CURRENT_LIST_DIR}/svnrev.pl) -set(SVNVERSION_H ${CMAKE_BINARY_DIR}/teraterm/common/svnversion.h) -set(BUILD_CONFIG ${CMAKE_BINARY_DIR}/build_config.cmake) -set(SOURCETREEINFO ${CMAKE_CURRENT_LIST_DIR}/sourcetree_info.bat) -set(BUILD_CONFIG_ISL ${SOURCE_DIR}/installer/build_config.isl) -if(NOT (DEFINED ARCHITECTURE)) - set(ARCHITECTURE "Win32") -endif() - -unset(ARGS) -if((DEFINED SVN_EXECUTABLE) AND (DEFINED ${SVN_EXECUTABLE})) - list(APPEND ARGS "--svn" "${SVN_EXECUTABLE}") -endif() -if((DEFINED GIT_EXECUTABLE) AND (DEFINED ${GIT_EXECUTABLE})) - list(APPEND ARGS "--git" "${GIT_EXECUTABLE}") -endif() -if((${SVNREV_PL} IS_NEWER_THAN ${SVNVERSION_H}) OR - (${SVNREV_PL} IS_NEWER_THAN ${BUILD_CONFIG})) - # 出力ファイルが古い(or存在しない)時は上書き指定 - list(APPEND ARGS "--overwrite") -endif() - -if(0) - message("PERL=${PERL}") - message("GIT_EXECUTABLE=${GIT_EXECUTABLE}") - message("SVN_EXECUTABLE=${SVN_EXECUTABLE}") - message("SOURCE_DIR=${SOURCE_DIR}") - message("BINARY_DIR=${BINARY_DIR}") - message("CMAKE_SOURCE_DIR=${CMAKE_SOURCE_DIR}") - message("CMAKE_BINARY_DIR=${CMAKE_BINARY_DIR}") - message("ARGS=${ARGS}") - message("SVNREV_PL=${SVNREV_PL}") - message("SVNVERSION_H=${SVNVERSION_H}") - message("BUILD_CONFIG=${BUILD_CONFIG}") - message("SOURCETREEINFO=${SOURCETREEINFO}") -endif() - -execute_process( - COMMAND ${CMAKE_COMMAND} -E echo ${PERL} ${SVNREV_PL} ${ARGS} - --root ${CMAKE_SOURCE_DIR} - --header ${SVNVERSION_H} - --cmake ${BUILD_CONFIG} - --bat ${SOURCETREEINFO} - --isl ${BUILD_CONFIG_ISL} - --architecture ${ARCHITECTURE} - #--verbose - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} - RESULT_VARIABLE rv -) -execute_process( - COMMAND ${PERL} ${SVNREV_PL} ${ARGS} - --root ${CMAKE_SOURCE_DIR} - --header ${SVNVERSION_H} - --cmake ${BUILD_CONFIG} - --bat ${SOURCETREEINFO} - --isl ${BUILD_CONFIG_ISL} - --architecture ${ARCHITECTURE} - #--verbose - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} - RESULT_VARIABLE rv -) diff --git a/ci_scripts/build_appveyor.cmake b/ci_scripts/build_appveyor.cmake deleted file mode 100644 index c2794e1cd..000000000 --- a/ci_scripts/build_appveyor.cmake +++ /dev/null @@ -1,92 +0,0 @@ -# -# input -# CMAKE_C_COMPILER -# CMAKE_CXX_COMPILER -# CMAKE_RC_COMPILER -# filenames -# GENERATE_OPTIONS -# cmake の generate 時の引数 -# BUILD_TOOL_OPTIONS -# cmake --build の最後に追加される -# BUILD_DIR -# build directry -# COMPILER_FRIENDLY -# インストーラ、zipファイル名の最後に追加される - -option(REMOVE_BUILD_DIR "for clean bulid" OFF) - -# create build dir -message(STATUS "BUILD_DIR=${BUILD_DIR}") -if(EXISTS "${BUILD_DIR}") - if(REMOVE_BUILD_DIR) - file(REMOVE_RECURSE ${BUILD_DIR}) - else() - file(REMOVE ${BUILD_DIR}/CMakeCache.txt) - endif() -endif() -if(NOT EXISTS "${BUILD_DIR}") - file(MAKE_DIRECTORY ${BUILD_DIR}) -endif() - - -# svn revision -file(MAKE_DIRECTORY ${BUILD_DIR}/teraterm/common) -execute_process( - COMMAND perl ${CMAKE_CURRENT_LIST_DIR}/../buildtools/svnrev/svnrev.pl -v --root "${CMAKE_CURRENT_LIST_DIR}/.." --header ${BUILD_DIR}/teraterm/common/svnversion.h --cmake ${BUILD_DIR}/build_config.cmake - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}/../buildtools/svnrev - ) - - -# variables -include(${BUILD_DIR}/build_config.cmake) -if(NOT DEFINED SVNVERSION) - set(SVNVERSION "0000") -endif() - -set(ZIP_FILE "snapshot-${VERSION}-r${SVNVERSION}-${DATE}_${TIME}-appveyor-${COMPILER_FRIENDLY}.zip") -set(SETUP_FILE "snapshot-${VERSION}-r${SVNVERSION}-${DATE}_${TIME}-appveyor-${COMPILER_FRIENDLY}") -set(SNAPSHOT_DIR "snapshot-${VERSION}-r${SVNVERSION}-${DATE}_${TIME}-appveyor-${COMPILER_FRIENDLY}") - -list(APPEND BUILD_OPTIONS "--config" "Release") -list(APPEND GENERATE_OPTIONS "-DSNAPSHOT_DIR=${SNAPSHOT_DIR}" "-DSETUP_ZIP=${ZIP_FILE}" "-DSETUP_EXE=${SETUP_FILE}" "-DSETUP_RELEASE=${RELEASE}") -list(APPEND GENERATE_OPTIONS "-DCMAKE_INSTALL_PREFIX=${SNAPSHOT_DIR}") -if(DEFINED CMAKE_C_COMPILER) - message("CMAKE_C_COMPILER=${CMAKE_C_COMPILER}") - list(APPEND GENERATE_OPTIONS "-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER}") -endif() -if(DEFINED CMAKE_CXX_COMPILER) - message("CMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}") - list(APPEND GENERATE_OPTIONS "-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}") -endif() -if(DEFINED CMAKE_RC_COMPILER) - message("CMAKE_RC_COMPILER=${CMAKE_RC_COMPILER}") - list(APPEND GENERATE_OPTIONS "-DCMAKE_RC_COMPILER=${CMAKE_RC_COMPILER}") -endif() - - -# libs/ -if(NOT EXISTS "${CMAKE_CURRENT_LIST_DIR}/../libs/openssl11_mingw") - execute_process( - COMMAND ${CMAKE_COMMAND} "-DCMAKE_GENERATOR=Unix Makefiles" -P ${CMAKE_CURRENT_LIST_DIR}/../libs/buildall.cmake - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}/../libs - ) -endif() - - -# teraterm -execute_process( - COMMAND ${CMAKE_COMMAND} "${CMAKE_CURRENT_LIST_DIR}/.." ${GENERATE_OPTIONS} - WORKING_DIRECTORY ${BUILD_DIR} - ) -execute_process( - COMMAND ${CMAKE_COMMAND} --build . --target install ${BUILD_OPTIONS} ${BUILD_TOOL_OPTIONS} - WORKING_DIRECTORY ${BUILD_DIR} - ) -execute_process( - COMMAND ${CMAKE_COMMAND} --build . --target zip - WORKING_DIRECTORY ${BUILD_DIR} - ) -execute_process( - COMMAND ${CMAKE_COMMAND} --build . --target inno_setup - WORKING_DIRECTORY ${BUILD_DIR} - ) diff --git a/cygwin/CMakeLists.txt b/cygwin/CMakeLists.txt deleted file mode 100644 index 16a22b998..000000000 --- a/cygwin/CMakeLists.txt +++ /dev/null @@ -1,49 +0,0 @@ -add_subdirectory(cyglaunch) -set_target_properties( - cyglaunch - PROPERTIES FOLDER cygwin) - -add_subdirectory(cyglib) -set_target_properties( - cyglib - PROPERTIES FOLDER cygwin) - -if(CMAKE_HOST_SYSTEM_NAME MATCHES "Linux") - # linuxでは、以下はビルドしない - return() -endif() - -# cygtool, innosetupで利用する 32bit nativeなdll -if(CMAKE_SIZEOF_VOID_P EQUAL 4) - # 32bit build - add_subdirectory(cygtool) - - set_target_properties( - cygtool - PROPERTIES - FOLDER cygwin - ) - set_target_properties( - cygtool_tester - PROPERTIES - FOLDER cygwin - ) -else() - # other build system... - if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.12.0") - add_subdirectory(cygtool_build) - if(TARGET cygtool) - set_target_properties( - cygtool - PROPERTIES FOLDER cygwin) - endif() - endif() -endif() - -# cygterm -if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.12.0") - add_subdirectory(cygterm_build) - set_target_properties( - cygterm_build - PROPERTIES FOLDER cygwin) -endif() diff --git a/cygwin/cyglaunch/CMakeLists.txt b/cygwin/cyglaunch/CMakeLists.txt deleted file mode 100644 index 73eb9c2cc..000000000 --- a/cygwin/cyglaunch/CMakeLists.txt +++ /dev/null @@ -1,81 +0,0 @@ -project("cyglaunch") - -add_executable( - ${PROJECT_NAME} WIN32 - cyglaunch.c - cyglaunch.rc - ../cyglib/cyglib.h - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - . - ) - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - cyglib - ) - -install( - TARGETS ${PROJECT_NAME} - DESTINATION . - ) - -#install( -# FILES -# cyglaunch_cmd.bat -# cyglaunch_cmd_msys2term.bat -# cyglaunch_git_bash.bat -# cyglaunch_msys2_mingw32.bat -# cyglaunch_msys2_mingw64.bat -# cyglaunch_msys2_msys.bat -# cyglaunch_powershell.bat -# cyglaunch_powershell_msys2term.bat -# cyglaunch_wsl.bat -# cyglaunch_wsl_msys2term.bat -# DESTINATION . -#) - -if(MSVC) - # subsystem:windows, but start form wmain() - if(${CMAKE_VERSION} VERSION_LESS "3.13.0") - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /ENTRY:wmainCRTStartup") - else() - target_link_options( - ${PROJECT_NAME} - PRIVATE - /ENTRY:wmainCRTStartup - ) - endif() -endif(MSVC) - -if(MINGW) - target_link_options( - ${PROJECT_NAME} - PRIVATE - -municode - ) -endif(MINGW) diff --git a/cygwin/cyglib/CMakeLists.txt b/cygwin/cyglib/CMakeLists.txt deleted file mode 100644 index b7feba123..000000000 --- a/cygwin/cyglib/CMakeLists.txt +++ /dev/null @@ -1,19 +0,0 @@ -project("cyglib") - -add_library( - ${PROJECT_NAME} - cyglib.c - cyglib.h - ) - -target_include_directories( - ${PROJECT_NAME} - PUBLIC - . - ) - -target_link_libraries( - ${PROJECT_NAME} - PUBLIC - common_static - ) diff --git a/cygwin/cygtool/CMakeLists.txt b/cygwin/cygtool/CMakeLists.txt deleted file mode 100644 index 8cb6720f5..000000000 --- a/cygwin/cygtool/CMakeLists.txt +++ /dev/null @@ -1,81 +0,0 @@ -cmake_minimum_required(VERSION 3.11) - -project("cygtool") - -add_library( - ${PROJECT_NAME} SHARED - cygtool.c - cygtool.h - ) -if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - cygtool.def - ) -endif() - -if(MINGW) - # libgcc_s_dw2-1.dll に依存しないため - target_link_options( - ${PROJECT_NAME} - PRIVATE - -static-libgcc - -Wl,--add-stdcall-alias - ) -endif() - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -if(MINGW) - set_target_properties( - ${PROJECT_NAME} - PROPERTIES PREFIX "" - SUFFIX ".dll" - ) -endif() - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - version - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ${CMAKE_CURRENT_LIST_DIR}/../../teraterm/common - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME DESTINATION . - ) - -###### cygtool_tester - -add_executable( - cygtool_tester - cygtool_tester.c - ) - -target_link_libraries( - cygtool_tester - PRIVATE - ${PROJECT_NAME} - ) diff --git a/cygwin/cygtool/build_cygtool.cmake b/cygwin/cygtool/build_cygtool.cmake deleted file mode 100644 index 88532f2c7..000000000 --- a/cygwin/cygtool/build_cygtool.cmake +++ /dev/null @@ -1,45 +0,0 @@ -# -# 32bit版cygtoolをビルドする -# 例 -# mkdir bulid_cygtool -# cd bulid_cygtool -# cmake -P ../build_cygtool.cmake -# -if(NOT DEFINED CMAKE_GENERATOR) - if(${CMAKE_COMMAND} MATCHES "mingw") - # meybe mingw - set(CMAKE_GENERATOR "Unix Makefiles") - elseif(CMAKE_HOST_WIN32) - set(CMAKE_GENERATOR "Visual Studio 17 2022") - else() - set(CMAKE_GENERATOR "Unix Makefiles") - endif() -endif() -if(${CMAKE_GENERATOR} MATCHES "Visual Studio") - # 32bit build for inno setup - set(GENERATE_OPTION "-A;Win32") -elseif(EXISTS "C:/msys64/mingw32/bin/cmake.exe") - message("switch msys 32bit env") - set(ENV{PATH} "c:\\msys64\\mingw32\\bin;c:\\msys64\\usr\\bin") - set(CMAKE_COMMAND "C:/msys64/mingw32/bin/cmake.exe") -else() - message("no 32bit env") -endif() - -message("CMAKE_GENERATOR=${CMAKE_GENERATOR}") -message("CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}") -message("CMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}") - -execute_process( - COMMAND ${CMAKE_COMMAND} ${CMAKE_CURRENT_LIST_DIR} -G ${CMAKE_GENERATOR} ${GENERATE_OPTION} -DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX} -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE} - ) - -execute_process( - COMMAND ${CMAKE_COMMAND} --build . --config release - ) - -if(DEFINED CMAKE_INSTALL_PREFIX) - execute_process( - COMMAND ${CMAKE_COMMAND} --build . --config release --target install - ) -endif() diff --git a/cygwin/cygtool_build/CMakeLists.txt b/cygwin/cygtool_build/CMakeLists.txt deleted file mode 100644 index de628b35f..000000000 --- a/cygwin/cygtool_build/CMakeLists.txt +++ /dev/null @@ -1,46 +0,0 @@ -# 32bit Windows 用 cygtool をビルドする - -cmake_minimum_required(VERSION 3.13) # for Generator-Expression - -if(CMAKE_HOST_SYSTEM_NAME MATCHES "Linux") - # linux上ではcygwin関連はビルドしない - return() -endif() - -set(CYGTOOL_DIR "${CMAKE_CURRENT_LIST_DIR}/../cygtool") -if("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - set(BINARY_DIR "${CMAKE_BINARY_DIR}/$") -else() - set(BINARY_DIR "${CMAKE_BINARY_DIR}") -endif() - -set(SRC - ${CYGTOOL_DIR}/cygtool.c - ${CYGTOOL_DIR}/cygtool.h - ${CYGTOOL_DIR}/cygtool.def - ) - -add_custom_target( - cygtool ALL - DEPENDS ${BINARY_DIR}/cygtool.dll - DEPENDS ${SRC} - SOURCES ${SRC} - ) - -file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/cygtool_build) - -add_custom_command( - OUTPUT ${BINARY_DIR}/cygtool.dll - DEPENDS ${SRC} - COMMAND ${CMAKE_COMMAND} - -DCMAKE_GENERATOR=${CMAKE_GENERATOR} - -DCMAKE_INSTALL_PREFIX=${BINARY_DIR} - -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE} - -P ${CYGTOOL_DIR}/build_cygtool.cmake - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/cygtool_build - ) - -install( - FILES ${BINARY_DIR}/cygtool.dll - DESTINATION . - ) diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt deleted file mode 100644 index 1425d3e9f..000000000 --- a/doc/CMakeLists.txt +++ /dev/null @@ -1,30 +0,0 @@ -if(CMAKE_HOST_WIN32) - find_program( - HHC hhc.exe - HINTS "C:/Program Files \(x86\)/HTML Help Workshop" - HINTS "C:/Program Files/HTML Help Workshop" - HINTS "$ENV{ProgramFiles}/HTML Help Workshop" - HINTS "$ENV{ProgramFiles\(x86\)}/HTML Help Workshop" - ) - find_program( - CHMCMD chmcmd - HINTS ${CMAKE_CURRENT_LIST_DIR}/../../buildtools/chmcmd/ - ) -else(CMAKE_HOST_WIN32) - set(HHC "HHC-NOTFOUND") - find_program( - CHMCMD chmcmd - ) -endif(CMAKE_HOST_WIN32) - -if ("${PERL}" STREQUAL "PERL-NOTFOUND") - return() -endif() -if (("${HHC}" STREQUAL "HHC-NOTFOUND") AND ("${CHMCMD}" STREQUAL "CHMCMD-NOTFOUND")) - return() -endif() - -add_subdirectory(en) -set_target_properties(chm_en PROPERTIES FOLDER doc) -add_subdirectory(ja) -set_target_properties(chm_ja PROPERTIES FOLDER doc) diff --git a/doc/chm.cmake b/doc/chm.cmake deleted file mode 100644 index 89cac86c8..000000000 --- a/doc/chm.cmake +++ /dev/null @@ -1,10 +0,0 @@ -# - hhc.exe の exit code を無視する -# -https://cmake.org/pipermail/cmake/2007-October/017111.html - -set(HHP "teraterm.hhp") - -message("${HHC} ${HHP}") - -execute_process( - COMMAND ${HHC} ${HHP} -) diff --git a/doc/en/CMakeLists.txt b/doc/en/CMakeLists.txt deleted file mode 100644 index 944c10a07..000000000 --- a/doc/en/CMakeLists.txt +++ /dev/null @@ -1,96 +0,0 @@ - -project("chm_en") - -if(NOT DEFINED BINARY_DIR) - MESSAGE(FATAL_ERROR "check BINARY_DIR") -endif() - -set(CONVERTED_FILES "") - -function(ConvertHTML output depend options) - list(APPEND CONVERTED_FILES ${CMAKE_CURRENT_LIST_DIR}/${output}) - set(SCRIPT ${CMAKE_CURRENT_LIST_DIR}/../2sjis.pl) - add_custom_command( - OUTPUT ${CMAKE_CURRENT_LIST_DIR}/${output} - DEPENDS ${CMAKE_CURRENT_LIST_DIR}/${depend} - DEPENDS ${SCRIPT} - COMMAND ${PERL} ${SCRIPT} - -i ${CMAKE_CURRENT_LIST_DIR}/${depend} - -o ${CMAKE_CURRENT_LIST_DIR}/${output} - ${options} --no_utime - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} - ) - set(CONVERTED_FILES ${CONVERTED_FILES} PARENT_SCOPE) -endfunction() - -set(REF "html/reference") -ConvertHTML(${REF}/Oniguruma-LICENSE.txt ../../libs/doc_help/Oniguruma-LICENSE.txt "-l;unix") -ConvertHTML(${REF}/RE.txt ../../libs/doc_help/en/RE "-l;unix;-c;utf8") -ConvertHTML(${REF}/LibreSSL-LICENSE.txt ../../libs/doc_help/LibreSSL-LICENSE.txt "-l;unix") -ConvertHTML(${REF}/SFMT-LICENSE.txt ../../libs/doc_help/SFMT-LICENSE.txt "-l;unix") -ConvertHTML(${REF}/argon2-LICENSE.txt ../../libs/doc_help/argon2-LICENSE.txt "-l;unix") -ConvertHTML(${REF}/zlib-LICENSE.txt ../../libs/doc_help/zlib-LICENSE.txt "-l;unix;--zlib_special") -ConvertHTML(${REF}/cJSON-LICENSE.txt ../../libs/doc_help/cJSON-LICENSE.txt "-l;crlf") -ConvertHTML(${REF}/CygTerm+-LICENSE.txt ../../cygwin/cygterm/COPYING "-l;unix") -ConvertHTML(${REF}/build_with_cmake.html ${REF}/build_with_cmake.md "") -ConvertHTML(${REF}/build_library_with_cmake.html ${REF}/build_library_with_cmake.md "") - -file( - GLOB_RECURSE - SRC - LIST_DIRECTORIES false - CONFIGURE_DEPENDS - *.html *.md *.png -) -list(FILTER SRC EXCLUDE REGEX "build_library_with_cmake.html") -list(FILTER SRC EXCLUDE REGEX "build_with_cmake.html") - -source_group(TREE ${CMAKE_CURRENT_LIST_DIR} FILES ${SRC}) - -add_custom_target( - ${PROJECT_NAME} ALL - DEPENDS ${BINARY_DIR}/teraterm.chm - SOURCES ${SRC} - SOURCES ../htmlhelp_index_make.pl - SOURCES ../2sjis.pl - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} -) - -if(NOT("${HHC}" STREQUAL "HHC-NOTFOUND")) - set(HHC_COMMAND ${HHC}) -else() - set(HHC_COMMAND ${CHMCMD}) -endif() - -if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.12.0") - set(RM rm) -else() - # 3.11は rm がない。remove を使用する - set(RM remove) -endif() - -add_custom_command( - OUTPUT ${BINARY_DIR}/teraterm.chm - DEPENDS ${CMAKE_CURRENT_LIST_DIR}/Index.hhk - DEPENDS ${CMAKE_CURRENT_LIST_DIR}/teraterm.hhc - DEPENDS ${CMAKE_CURRENT_LIST_DIR}/teraterm.hhp - DEPENDS ${CONVERTED_FILES} - DEPENDS ${SRC} - COMMAND ${CMAKE_COMMAND} -E ${RM} -f ${BINARY_DIR}/teraterm.chm - COMMAND ${CMAKE_COMMAND} -DHHC=${HHC_COMMAND} -P ../chm.cmake - COMMAND ${CMAKE_COMMAND} -E rename ${CMAKE_CURRENT_LIST_DIR}/teraterm.chm ${BINARY_DIR}/teraterm.chm - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} -) - -add_custom_command( - OUTPUT ${CMAKE_CURRENT_LIST_DIR}/Index.hhk - DEPENDS ${SRC} - DEPENDS ${CMAKE_CURRENT_LIST_DIR}/../htmlhelp_index_make.pl - COMMAND ${PERL} ${CMAKE_CURRENT_LIST_DIR}/../htmlhelp_index_make.pl . html -o Index.hhk - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} -) - -install( - FILES ${BINARY_DIR}/teraterm.chm - DESTINATION . -) diff --git a/doc/ja/CMakeLists.txt b/doc/ja/CMakeLists.txt deleted file mode 100644 index 305bdd8da..000000000 --- a/doc/ja/CMakeLists.txt +++ /dev/null @@ -1,96 +0,0 @@ - -project("chm_ja") - -if(NOT DEFINED BINARY_DIR) - MESSAGE(FATAL_ERROR "check BINARY_DIR") -endif() - -set(CONVERTED_FILES "") - -function(ConvertHTML output depend options) - list(APPEND CONVERTED_FILES ${CMAKE_CURRENT_LIST_DIR}/${output}) - set(SCRIPT ${CMAKE_CURRENT_LIST_DIR}/../2sjis.pl) - add_custom_command( - OUTPUT ${CMAKE_CURRENT_LIST_DIR}/${output} - DEPENDS ${CMAKE_CURRENT_LIST_DIR}/${depend} - DEPENDS ${SCRIPT} - COMMAND ${PERL} ${SCRIPT} - -i ${CMAKE_CURRENT_LIST_DIR}/${depend} - -o ${CMAKE_CURRENT_LIST_DIR}/${output} - ${options} --no_utime - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} - ) - set(CONVERTED_FILES ${CONVERTED_FILES} PARENT_SCOPE) -endfunction() - -set(REF "html/reference") -ConvertHTML(${REF}/Oniguruma-LICENSE.txt ../../libs/doc_help/Oniguruma-LICENSE.txt "-l;unix") -ConvertHTML(${REF}/RE.txt ../../libs/doc_help/ja/RE "-l;unix;-c;utf8") -ConvertHTML(${REF}/LibreSSL-LICENSE.txt ../../libs/doc_help/LibreSSL-LICENSE.txt "-l;unix") -ConvertHTML(${REF}/SFMT-LICENSE.txt ../../libs/doc_help/SFMT-LICENSE.txt "-l;unix") -ConvertHTML(${REF}/argon2-LICENSE.txt ../../libs/doc_help/argon2-LICENSE.txt "-l;unix") -ConvertHTML(${REF}/zlib-LICENSE.txt ../../libs/doc_help/zlib-LICENSE.txt "-l;unix;--zlib_special") -ConvertHTML(${REF}/cJSON-LICENSE.txt ../../libs/doc_help/cJSON-LICENSE.txt "-l;crlf") -ConvertHTML(${REF}/CygTerm+-LICENSE.txt ../../cygwin/cygterm/COPYING "-l;unix") -ConvertHTML(${REF}/build_with_cmake.html ${REF}/build_with_cmake.md "") -ConvertHTML(${REF}/build_library_with_cmake.html ${REF}/build_library_with_cmake.md "") - -file( - GLOB_RECURSE - SRC - LIST_DIRECTORIES false - CONFIGURE_DEPENDS - *.html *.md *.png -) -list(FILTER SRC EXCLUDE REGEX "build_library_with_cmake.html") -list(FILTER SRC EXCLUDE REGEX "build_with_cmake.html") - -source_group(TREE ${CMAKE_CURRENT_LIST_DIR} FILES ${SRC}) - -add_custom_target( - ${PROJECT_NAME} ALL - DEPENDS ${BINARY_DIR}/teratermj.chm - SOURCES ${SRC} - SOURCES ../htmlhelp_index_make.pl - SOURCES ../2sjis.pl - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} -) - -if(NOT("${HHC}" STREQUAL "HHC-NOTFOUND")) - set(HHC_COMMAND ${HHC}) -else() - set(HHC_COMMAND ${CHMCMD}) -endif() - -if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.12.0") - set(RM rm) -else() - # 3.11は rm がない。remove を使用する - set(RM remove) -endif() - -add_custom_command( - OUTPUT ${BINARY_DIR}/teratermj.chm - DEPENDS ${CMAKE_CURRENT_LIST_DIR}/Index.hhk - DEPENDS ${CMAKE_CURRENT_LIST_DIR}/teraterm.hhc - DEPENDS ${CMAKE_CURRENT_LIST_DIR}/teraterm.hhp - DEPENDS ${CONVERTED_FILES} - DEPENDS ${SRC} - COMMAND ${CMAKE_COMMAND} -E ${RM} -f ${BINARY_DIR}/teratermj.chm - COMMAND ${CMAKE_COMMAND} -DHHC=${HHC_COMMAND} -P ../chm.cmake - COMMAND ${CMAKE_COMMAND} -E rename ${CMAKE_CURRENT_LIST_DIR}/teratermj.chm ${BINARY_DIR}/teratermj.chm - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} -) - -add_custom_command( - OUTPUT ${CMAKE_CURRENT_LIST_DIR}/Index.hhk - DEPENDS ${SRC} - DEPENDS ${CMAKE_CURRENT_LIST_DIR}/../htmlhelp_index_make.pl - COMMAND ${PERL} ${CMAKE_CURRENT_LIST_DIR}/../htmlhelp_index_make.pl . html -o Index.hhk - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} -) - -install( - FILES ${BINARY_DIR}/teratermj.chm - DESTINATION . -) diff --git a/doc_internal/CMakeLists.txt b/doc_internal/CMakeLists.txt deleted file mode 100644 index 853315b14..000000000 --- a/doc_internal/CMakeLists.txt +++ /dev/null @@ -1,36 +0,0 @@ -find_package(Doxygen) -message("doxygen=${DOXYGEN_EXECUTABLE}") - -if(NOT DOXYGEN_FOUND) - message(warning "doxygen not found") -else() - add_custom_target( - doxygen - COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_LIST_DIR}/doxygen.cmake - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} - ) - - set_target_properties( - doxygen - PROPERTIES FOLDER doc_internal) -endif() - - -find_program(GTAGS gtags) -find_program(HTAGS htags) -message("GTAGS=${GTAGS}") -message("HTAGS=${HTAGS}") - -if(("${GTAGS}" STREQUAL "GTAGS-NOTFOUND") OR ("${HTAGS}" STREQUAL "HTAGS-NOTFOUND")) - message(warning "global not found") -else() - add_custom_target( - global - COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_LIST_DIR}/global.cmake - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} - ) - - set_target_properties( - global - PROPERTIES FOLDER doc_internal) -endif() diff --git a/doc_internal/doxygen.cmake b/doc_internal/doxygen.cmake deleted file mode 100644 index 61e71a88d..000000000 --- a/doc_internal/doxygen.cmake +++ /dev/null @@ -1,7 +0,0 @@ -find_program(DOXYGEN Doxygen) -message("DOXYGEN=${DOXYGEN}") - -execute_process( - COMMAND ${DOXYGEN} Doxyfile - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}/doxygen - ) diff --git a/doc_internal/global.cmake b/doc_internal/global.cmake deleted file mode 100644 index 4272b5621..000000000 --- a/doc_internal/global.cmake +++ /dev/null @@ -1,18 +0,0 @@ - -file(REMOVE_RECURSE global) - -execute_process( - COMMAND ${CMAKE_COMMAND} -P gtags_update.cmake - WORKING_DIRECTORY ".." - ) - -find_program(HTAGS htags) -message("HTAGS=${HTAGS}") - -execute_process( - COMMAND ${HTAGS} -ans --tabs 4 -F - WORKING_DIRECTORY ".." - ) - -file(MAKE_DIRECTORY global) -file(RENAME ../HTML global/HTML) diff --git a/gtags_update.cmake b/gtags_update.cmake deleted file mode 100644 index e56b3d1ae..000000000 --- a/gtags_update.cmake +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env cmake -P -find_program(FIND find - HINTS C:/cygwin64/bin - HINTS C:/cygwin/bin - HINTS C:/msys64/usr/bin - ) -find_program(GREP grep - HINTS C:/cygwin64/bin - HINTS C:/cygwin/bin - HINTS C:/msys64/usr/bin - ) -find_program(GTAGS gtags) -message("FIND=${FIND}") -message("GREP=${GREP}") -message("GTAGS=${GTAGS}") - -execute_process( - COMMAND ${FIND} teraterm TTProxy TTX* ttssh2 cygwin ttpmenu -type f -name "*.c" -o -name "*.cpp" -o -name "*.h" - COMMAND ${GREP} -v Release - COMMAND ${GREP} -v Debug - COMMAND ${GREP} -v .vs - COMMAND ${GREP} -v build - OUTPUT_FILE gtags.files - WORKING_DIRECTORY "." - ) -execute_process( - COMMAND ${GTAGS} -f gtags.files - ) -# see doc_internal/readme.md diff --git a/installer/CMakeLists.txt b/installer/CMakeLists.txt deleted file mode 100644 index 636281da8..000000000 --- a/installer/CMakeLists.txt +++ /dev/null @@ -1,58 +0,0 @@ - -add_custom_target( - teraterm_ini ALL - DEPENDS ${BINARY_DIR}/TERATERM.INI - SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/release/TERATERM.INI - SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/setini.pl -) - -set_target_properties(teraterm_ini PROPERTIES FOLDER installer) - -add_custom_command( - OUTPUT ${BINARY_DIR}/TERATERM.INI - DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/release/TERATERM.INI - DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/setini.pl - COMMAND ${PERL} ${CMAKE_CURRENT_SOURCE_DIR}/setini.pl ${CMAKE_CURRENT_SOURCE_DIR}/release/TERATERM.INI > "${BINARY_DIR}/TERATERM.INI" -) - -install( - FILES ${BINARY_DIR}/TERATERM.INI - DESTINATION . -) - -add_custom_target( - special_font ALL - DEPENDS ${BINARY_DIR}/TSPECIAL1.TTF -) - -add_custom_command( - OUTPUT ${BINARY_DIR}/TSPECIAL1.TTF - COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_LIST_DIR}/release/TSPECIAL1.TTF ${BINARY_DIR} -) - -set_target_properties(special_font PROPERTIES FOLDER installer) - -install( - DIRECTORY release/ - DESTINATION . - PATTERN *~ EXCLUDE - PATTERN TERATERM.INI EXCLUDE - PATTERN lang* EXCLUDE -) - -install( - FILES release/IBMKEYB.CNF - DESTINATION . - RENAME KEYBOARD.CNF -) - -install( - FILES ../ttpmenu/readme.txt - DESTINATION . - RENAME ttmenu_readme-j.txt -) - -add_subdirectory(release/lang) -set_target_properties(lang PROPERTIES FOLDER installer) -add_subdirectory(release/lang_utf16le) -set_target_properties(lang_utf16le PROPERTIES FOLDER installer) diff --git a/installer/install.cmake b/installer/install.cmake deleted file mode 100644 index 970243549..000000000 --- a/installer/install.cmake +++ /dev/null @@ -1,108 +0,0 @@ - -message(CMAKE_HOST_SYSTEM_NAME=${CMAKE_HOST_SYSTEM_NAME}) - -# Inno Setup -# Create setup.exe -if(CMAKE_HOST_SYSTEM_NAME MATCHES "Windows") - find_program( - ISCC ISCC.exe - HINTS "${CMAKE_SOURCE_DIR}/../buildtools/innosetup6" - HINTS "C:/Program Files (x86)/Inno Setup 6/" - HINTS "C:/Program Files/Inno Setup 6/" - HINTS "$ENV{LOCALAPPDATA}/Programs/Inno Setup 6" - ) - message("ISCC=${ISCC}") -endif() - -message("CMAKE_CURRENT_BINARY_DIR=${CMAKE_CURRENT_BINARY_DIR}") - -include("${CMAKE_CURRENT_BINARY_DIR}/build_config.cmake") - -if(NOT $ENV{USER}) - set(USER $ENV{USER}) -elseif(NOT $ENV{USERNAME}) - set(USER $ENV{USERNAME}) -else() - set(USER "NONAME") -endif() - -if (RELEASE) - list(APPEND ISCC_OPTION "/DAppVersion=${VERSION}") -else() - list(APPEND ISCC_OPTION "/DAppVersion=${VERSION}_${DATE}_${TIME}-${GITVERSION}") -endif() - -if(DEFINED GITVERSION) - message("git hash=\"${GITVERSION}\"") - set(REVISION_TIME_USER "${DATE}_${TIME}-${GITVERSION}-${USER}") -elseif(DEFINED SVNVERSION) - message("svn revision=\"${SVNVERSION}\"") - set(REVISION_TIME_USER "r${SVNVERSION}-${DATE}_${TIME}-${USER}") -else() - set(REVISION_TIME_USER "${DATE}_${TIME}-unknown-${USER}") -endif() - -set(CMAKE_INSTALL_PREFIX "${CMAKE_CURRENT_BINARY_DIR}/teraterm-${VERSION}-${ARCHITECTURE}-${REVISION_TIME_USER}") -message("CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}") -file(MAKE_DIRECTORY ${CMAKE_INSTALL_PREFIX}) - -if(NOT DEFINED SETUP_EXE) - # not need ".exe" - if(RELEASE) - set(SETUP_EXE "teraterm-${VERSION}-${ARCHITECTURE}") - else() - set(SETUP_EXE "teraterm-${VERSION}-${ARCHITECTURE}-${REVISION_TIME_USER}") - endif() -endif() -if(NOT DEFINED SETUP_ZIP) - if(RELEASE) - set(SETUP_ZIP "teraterm-${VERSION}-${ARCHITECTURE}.zip") - else() - set(SETUP_ZIP "teraterm-${VERSION}-${ARCHITECTURE}-${REVISION_TIME_USER}.zip") - endif() -endif() - -# Inno Setup -# Create setup.exe -if(ISCC) - if("${ARCHITECTURE}" STREQUAL "ARM64") - list(APPEND ISCC_OPTION "/DArch=arm64") - elseif(("${ARCHITECTURE}" STREQUAL "x64") OR ("${ARCHITECTURE}" STREQUAL "x86_64")) - list(APPEND ISCC_OPTION "/DArch=x64") - elseif(("${ARCHITECTURE}" STREQUAL "Win32") OR ("${ARCHITECTURE}" STREQUAL "i686")) - list(APPEND ISCC_OPTION "/DArch=x86") - else() - message(FATAL_ERROR "ARCHITECTURE=${ARCHITECTURE}") - endif() - file(TOUCH ${CMAKE_INSTALL_PREFIX}/cygterm+.tar.gz) - execute_process( - COMMAND ${ISCC} ${ISCC_OPTION} /O${CMAKE_BINARY_DIR} /DOutputBaseFilename=${SETUP_EXE} /DSrcDir=${CMAKE_INSTALL_PREFIX} ${CMAKE_CURRENT_LIST_DIR}/teraterm.iss - WORKING_DIRECTORY ${CMAKE_BINARY_DIR} - ) - - file(SHA256 ${SETUP_EXE}.exe SHA_OUT) - file(WRITE "${CMAKE_BINARY_DIR}/${SETUP_EXE}.exe.sha256sum" "${SHA_OUT} ${SETUP_EXE}.exe") - file(SHA512 ${SETUP_EXE}.exe SHA_OUT) - file(WRITE "${CMAKE_BINARY_DIR}/${SETUP_EXE}.exe.sha512sum" "${SHA_OUT} ${SETUP_EXE}.exe") -endif(ISCC) - -# zip -file(RENAME ${CMAKE_INSTALL_PREFIX}/TTXFixedWinSize.dll ${CMAKE_INSTALL_PREFIX}/_TTXFixedWinSize.dll) -file(RENAME ${CMAKE_INSTALL_PREFIX}/TTXOutputBuffering.dll ${CMAKE_INSTALL_PREFIX}/_TTXOutputBuffering.dll) -file(RENAME ${CMAKE_INSTALL_PREFIX}/TTXResizeWin.dll ${CMAKE_INSTALL_PREFIX}/_TTXResizeWin.dll) -file(RENAME ${CMAKE_INSTALL_PREFIX}/TTXShowCommandLine.dll ${CMAKE_INSTALL_PREFIX}/_TTXShowCommandLine.dll) -file(RENAME ${CMAKE_INSTALL_PREFIX}/TTXtest.dll ${CMAKE_INSTALL_PREFIX}/_TTXtest.dll) -execute_process( - COMMAND "${CMAKE_COMMAND}" -E tar cvf ${SETUP_ZIP} --format=zip ${CMAKE_INSTALL_PREFIX} - WORKING_DIRECTORY ${CMAKE_BINARY_DIR} -) -file(RENAME ${CMAKE_INSTALL_PREFIX}/_TTXFixedWinSize.dll ${CMAKE_INSTALL_PREFIX}/TTXFixedWinSize.dll) -file(RENAME ${CMAKE_INSTALL_PREFIX}/_TTXOutputBuffering.dll ${CMAKE_INSTALL_PREFIX}/TTXOutputBuffering.dll) -file(RENAME ${CMAKE_INSTALL_PREFIX}/_TTXResizeWin.dll ${CMAKE_INSTALL_PREFIX}/TTXResizeWin.dll) -file(RENAME ${CMAKE_INSTALL_PREFIX}/_TTXShowCommandLine.dll ${CMAKE_INSTALL_PREFIX}/TTXShowCommandLine.dll) -file(RENAME ${CMAKE_INSTALL_PREFIX}/_TTXtest.dll ${CMAKE_INSTALL_PREFIX}/TTXtest.dll) - -file(SHA256 ${SETUP_EXE}.zip SHA_OUT) -file(WRITE "${CMAKE_BINARY_DIR}/${SETUP_EXE}.zip.sha256sum" "${SHA_OUT} ${SETUP_EXE}.zip") -file(SHA512 ${SETUP_EXE}.zip SHA_OUT) -file(WRITE "${CMAKE_BINARY_DIR}/${SETUP_EXE}.zip.sha512sum" "${SHA_OUT} ${SETUP_EXE}.zip") diff --git a/installer/iscc_signed.cmake b/installer/iscc_signed.cmake deleted file mode 100644 index 4470d0343..000000000 --- a/installer/iscc_signed.cmake +++ /dev/null @@ -1,44 +0,0 @@ -# cmake -P iscc_signed.cmake - -if(DEFINED ENV{arch}) - set(arch $ENV{arch}) -else() - set(arch "x86") -endif() - -include(${CMAKE_CURRENT_LIST_DIR}/../buildtools/svnrev/build_config.cmake) - -#file(REMOVE_RECURSE ${CMAKE_CURRENT_LIST_DIR}/Output/portable_signed/unzip) -#file(ARCHIVE_EXTRACT -# INPUT ${CMAKE_CURRENT_LIST_DIR}/Output/portable/teraterm_portable_signed.zip -# DESTINATION ${CMAKE_CURRENT_LIST_DIR}/Output/portable_signed/unzip -#) - -set(ISCC "${CMAKE_CURRENT_LIST_DIR}/../buildtools/innosetup6/ISCC.exe") - -if(RELEASE) - set(SETUP_EXE "teraterm-${VERSION}-${arch}") -else() - set(SETUP_EXE "teraterm-${VERSION}-${arch}-${DATE}_${TIME}-${GITVERSION}-snapshot") -endif() -set(SRC_DIR "Output/portable_signed/teraterm-${arch}") # teraterm.iss相対 -set(SETUP_DIR "${CMAKE_CURRENT_LIST_DIR}/Output/setup") -#set(SETUP_EXE "teraterm-unsigned") - -set(INNO_SETUP_ARCH "x86") -if(arch STREQUAL "x64") - set(INNO_SETUP_ARCH "x64") -elseif(arch STREQUAL "arm64") - set(INNO_SETUP_ARCH "arm64") -endif() - -file(MAKE_DIRECTORY ${SETUP_DIR}) -execute_process( - COMMAND ${ISCC} /DAppVersion=${VERSION} /DOutputBaseFilename=${SETUP_EXE} /DSrcDir=${SRC_DIR} /DArch=${INNO_SETUP_ARCH} /O${SETUP_DIR} ${CMAKE_CURRENT_LIST_DIR}/teraterm.iss - WORKING_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/Output/portable_signed" - ENCODING AUTO - RESULT_VARIABLE rv -) -if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") -endif() diff --git a/installer/release/lang/CMakeLists.txt b/installer/release/lang/CMakeLists.txt deleted file mode 100644 index 29f9d6dc6..000000000 --- a/installer/release/lang/CMakeLists.txt +++ /dev/null @@ -1,62 +0,0 @@ -cmake_minimum_required(VERSION 3.11) - -project("lang") - -if(NOT DEFINED BINARY_DIR) - MESSAGE(FATAL_ERROR "check BINARY_DIR") -endif() - -set(OUTPUT_DIR "${BINARY_DIR}/lang/") - -if(NOT DEFINED PERL) - MESSAGE(FATAL_ERROR "check perl PERL=${PERL}") -endif() - -set(CONVERTED_FILES "") -set(SRC_FILES "") -set(SCRIPT ${CMAKE_CURRENT_LIST_DIR}/../../utf8_to.pl) - -function(ConvertLNG FNAME OPTION) - set(SRC ${CMAKE_CURRENT_LIST_DIR}/../lang_utf8/${FNAME}) - set(DEST ${OUTPUT_DIR}/${FNAME}) - list(APPEND CONVERTED_FILES ${DEST}) - list(APPEND SRC_FILES ${SRC}) - add_custom_command( - OUTPUT ${DEST} - DEPENDS ${SRC} - DEPENDS ${SCRIPT} - COMMAND ${CMAKE_COMMAND} -E make_directory ${OUTPUT_DIR} - COMMAND ${PERL} ${SCRIPT} ${OPTION} ${SRC} ${DEST} - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} - ) - set(CONVERTED_FILES ${CONVERTED_FILES} PARENT_SCOPE) - set(SRC_FILES ${SRC_FILES} PARENT_SCOPE) -endfunction() - -ConvertLNG(Default.lng cp1252) -ConvertLNG(en_US.lng cp1252) -ConvertLNG(fr_FR.lng cp1252) -ConvertLNG(de_DE.lng cp1252) -ConvertLNG(ja_JP.lng cp932) -ConvertLNG(ko_KR.lng cp949) -ConvertLNG(ru_RU.lng windows-1251) -ConvertLNG("zh_CN.lng" cp936) -ConvertLNG(es_ES.lng cp1252) -ConvertLNG("zh_TW.lng" cp950) -ConvertLNG("ta_IN.lng" cp65001) -ConvertLNG("pt_BR.lng" cp1252) -ConvertLNG("it_IT.lng" cp1252) -ConvertLNG("tr_TR.lng" cp1254) - -add_custom_target( - ${PROJECT_NAME} ALL - DEPENDS ${CONVERTED_FILES} - SOURCES ${SRC_FILES} - SOURCES ${SCRIPT} - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} -) - -install( - FILES ${CONVERTED_FILES} - DESTINATION lang/ - ) diff --git a/installer/release/lang_utf16le/CMakeLists.txt b/installer/release/lang_utf16le/CMakeLists.txt deleted file mode 100644 index 36c8a5cfe..000000000 --- a/installer/release/lang_utf16le/CMakeLists.txt +++ /dev/null @@ -1,62 +0,0 @@ -cmake_minimum_required(VERSION 3.11) - -project("lang_utf16le") - -if(NOT DEFINED BINARY_DIR) - MESSAGE(FATAL_ERROR "check BINARY_DIR") -endif() - -set(OUTPUT_DIR "${BINARY_DIR}/lang_utf16le/") - -if(NOT DEFINED PERL) - MESSAGE(FATAL_ERROR "check perl PERL=${PERL}") -endif() - -set(CONVERTED_FILES "") -set(SRC_FILES "") -set(SCRIPT ${CMAKE_CURRENT_LIST_DIR}/../../utf8_to.pl) - -function(ConvertLNG FNAME OPTION) - set(SRC ${CMAKE_CURRENT_LIST_DIR}/../lang_utf8/${FNAME}) - set(DEST ${OUTPUT_DIR}/${FNAME}) - list(APPEND CONVERTED_FILES ${DEST}) - list(APPEND SRC_FILES ${SRC}) - add_custom_command( - OUTPUT ${DEST} - DEPENDS ${SRC} - DEPENDS ${SCRIPT} - COMMAND ${CMAKE_COMMAND} -E make_directory ${OUTPUT_DIR} - COMMAND ${PERL} ${SCRIPT} ${OPTION} ${SRC} ${DEST} - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} - ) - set(CONVERTED_FILES ${CONVERTED_FILES} PARENT_SCOPE) - set(SRC_FILES ${SRC_FILES} PARENT_SCOPE) -endfunction() - -ConvertLNG(Default.lng utf16le) -ConvertLNG(en_US.lng utf16le) -ConvertLNG(fr_FR.lng utf16le) -ConvertLNG(de_DE.lng utf16le) -ConvertLNG(ja_JP.lng utf16le) -ConvertLNG(ko_KR.lng utf16le) -ConvertLNG(ru_RU.lng utf16le) -ConvertLNG("zh_CN.lng" utf16le) -ConvertLNG(es_ES.lng utf16le) -ConvertLNG("zh_TW.lng" utf16le) -ConvertLNG("ta_IN.lng" utf16le) -ConvertLNG("pt_BR.lng" utf16le) -ConvertLNG("it_IT.lng" utf16le) -ConvertLNG("tr_TR.lng" utf16le) - -add_custom_target( - ${PROJECT_NAME} ALL - DEPENDS ${CONVERTED_FILES} - SOURCES ${SRC_FILES} - SOURCES ${SCRIPT} - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} -) - -install( - FILES ${CONVERTED_FILES} - DESTINATION lang_utf16le/ - ) diff --git a/libcompatwin/CMakeLists.txt b/libcompatwin/CMakeLists.txt deleted file mode 100644 index a8a2a8acf..000000000 --- a/libcompatwin/CMakeLists.txt +++ /dev/null @@ -1,36 +0,0 @@ -cmake_minimum_required(VERSION 3.10) -project(libcompatwin) - -option(TEST_LIBCOMPATWIN "test libcompatwin" OFF) - -set(CMAKE_ASM_NASM_COMPILER ${CMAKE_CURRENT_LIST_DIR}/../buildtools/nasm/nasm.exe) -set(CMAKE_ASM_NASM_OBJECT_FORMAT win32) -set(CMAKE_ASM_NASM_FLAGS_DEBUG "-g -Fcv8") -enable_language(ASM_NASM) - -add_library(${PROJECT_NAME} - STATIC - initonceexeconce.cpp - InitOnceExecuteOnce.asm - inet_pton.cpp - inet_pton.asm - libcompatwin_init.cpp - BCryptGenRandom.asm - BCryptGenRandom.cpp -) - -source_group( - "asm" - REGULAR_EXPRESSION - "asm") - -if(MSVC) - target_compile_options(${PROJECT_NAME} - PRIVATE - "$<$:/ZI>" - ) -endif() - -if(TEST_LIBCOMPATWIN) - add_subdirectory(test) -endif() diff --git a/libcompatwin/test/CMakeLists.txt b/libcompatwin/test/CMakeLists.txt deleted file mode 100644 index c061cdb50..000000000 --- a/libcompatwin/test/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -cmake_minimum_required(VERSION 3.10) - -project(test_bcryptgenrandom) - -add_executable( - ${PROJECT_NAME} - test_BCryptGenRandom.cpp -) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - libcompatwin -) diff --git a/libs/VSToolchain.cmake b/libs/VSToolchain.cmake deleted file mode 100644 index 59b2980bb..000000000 --- a/libs/VSToolchain.cmake +++ /dev/null @@ -1,10 +0,0 @@ -# build with static runtime for zlib -if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.15.0") - # CMAKE_MSVC_RUNTIME_LIBRARY 3.15+ - set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$:Debug>") -else() - set(CMAKE_C_FLAGS_DEBUG "/DWIN32 /D_WINDOWS /W3 /MTd /Zi /Ob0 /Od /RTC1" CACHE STRING "" FORCE) - set(CMAKE_CXX_FLAGS_DEBUG "/DWIN32 /D_WINDOWS /W3 /MTd /Zi /Ob0 /Od /RTC1" CACHE STRING "" FORCE) - set(CMAKE_C_FLAGS_RELEASE "/DWIN32 /D_WINDOWS /W3 /MT /O2 /Ob2 /DNDEBUG" CACHE STRING "" FORCE) - set(CMAKE_CXX_FLAGS_RELEASE "/DWIN32 /D_WINDOWS /W3 /MT /O2 /Ob2 /DNDEBUG" CACHE STRING "" FORCE) -endif() diff --git a/libs/buildall.cmake b/libs/buildall.cmake deleted file mode 100644 index a258007ae..000000000 --- a/libs/buildall.cmake +++ /dev/null @@ -1,87 +0,0 @@ -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=Win32 -P buildall.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=x64 -P buildall.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=ARM64 -P buildall.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 16 2019" -DARCHITECTURE=Win32 -P buildall.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 16 2019" -DARCHITECTURE=x64 -P buildall.cmake -# .\cmake-3.11.4-win32-x86\bin\cmake.exe -DCMAKE_GENERATOR="Visual Studio 8 2005" -P buildall.cmake -# cmake -DCMAKE_GENERATOR="Unix Makefiles" -DARCHITECTURE=i686 -P buildall.cmake -# cmake -DCMAKE_GENERATOR="Unix Makefiles" -DARCHITECTURE=x86_64 -P buildall.cmake -# cmake -DCMAKE_GENERATOR="NMake Makefiles" -DBUILD_SSL_LIBRARY=OFF -P buildall.cmake - -set(BUILD_OPENSSL1 OFF) -set(BUILD_OPENSSL3 OFF) - -if("${CMAKE_GENERATOR}" STREQUAL "") - message(FATAL_ERROR "set CMAKE_GENERATOR!") -endif() - -if(${CMAKE_GENERATOR} MATCHES "Visual Studio") - if("${CMAKE_HOST_SYSTEM_NAME}" STREQUAL "CYGWIN") - message(FATAL_ERROR "cmake command is from cygwin") - endif() -endif() - -if((${CMAKE_GENERATOR} MATCHES "Visual Studio 8 2005") OR - (${CMAKE_GENERATOR} MATCHES "Visual Studio 9 2008")) - set(BUILD_SSL_LIBRARY OFF) - set(ARCHITECTURE Win32) -endif() - -if(NOT DEFINED ARCHITECTURE) - set(ARCHITECTURE Win32) - #message(FATAL_ERROR "check ARCHITECTURE") -endif() - -if(NOT DEFINED BUILD_SSL_LIBRARY) - set(BUILD_SSL_LIBRARY ON) -endif() - -set(ARCHITECTURE_OPTION -DARCHITECTURE=${ARCHITECTURE}) - -# install tools -include(${CMAKE_CURRENT_LIST_DIR}/../buildtools/checkperl.cmake) -message("perl=${PERL}") - -# build -message("oniguruma") -execute_process( - COMMAND ${CMAKE_COMMAND} -DCMAKE_GENERATOR=${CMAKE_GENERATOR} ${ARCHITECTURE_OPTION} -P buildoniguruma.cmake - ) -message("zlib") -execute_process( - COMMAND ${CMAKE_COMMAND} -DCMAKE_GENERATOR=${CMAKE_GENERATOR} ${ARCHITECTURE_OPTION} -P buildzlib.cmake - ) -message("SFMT") -execute_process( - COMMAND ${CMAKE_COMMAND} -DCMAKE_GENERATOR=${CMAKE_GENERATOR} ${ARCHITECTURE_OPTION} -P buildsfmt.cmake - ) -if(BUILD_SSL_LIBRARY) - if(BUILD_OPENSSL1) - message("openssl 1.1") - execute_process( - COMMAND ${CMAKE_COMMAND} -DCMAKE_GENERATOR=${CMAKE_GENERATOR} ${ARCHITECTURE_OPTION} -P openssl11.cmake - ) - endif(BUILD_OPENSSL1) - if(BUILD_OPENSSL3) - message("openssl 3") - execute_process( - COMMAND ${CMAKE_COMMAND} -DCMAKE_GENERATOR=${CMAKE_GENERATOR} ${ARCHITECTURE_OPTION} -P openssl3.cmake - ) - endif(BUILD_OPENSSL3) -endif(BUILD_SSL_LIBRARY) -message("cJSON") -execute_process( - COMMAND ${CMAKE_COMMAND} -P buildcjson.cmake - ) -message("argon2") -execute_process( - COMMAND ${CMAKE_COMMAND} -P buildargon2.cmake - ) -if(BUILD_SSL_LIBRARY) - message("libressl") - execute_process( - COMMAND ${CMAKE_COMMAND} -DCMAKE_GENERATOR=${CMAKE_GENERATOR} ${ARCHITECTURE_OPTION} -P buildlibressl.cmake - ) -endif(BUILD_SSL_LIBRARY) - -message("done buildall.cmake") diff --git a/libs/buildargon2.cmake b/libs/buildargon2.cmake deleted file mode 100644 index c3314b08b..000000000 --- a/libs/buildargon2.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# cmake -P buildargon2.cmake - -set(SRC_DIR "${CMAKE_CURRENT_LIST_DIR}/argon2") - -execute_process( - COMMAND ${CMAKE_COMMAND} -DTARGET=argon2 -P download.cmake -) - -if(${SRC_DIR}/LICENSE IS_NEWER_THAN ${CMAKE_CURRENT_LIST_DIR}/doc_help/argon2-LICENSE.txt) - file(COPY - ${SRC_DIR}/LICENSE - DESTINATION ${CMAKE_CURRENT_LIST_DIR}/doc_help) - file(RENAME - ${CMAKE_CURRENT_LIST_DIR}/doc_help/LICENSE - ${CMAKE_CURRENT_LIST_DIR}/doc_help/argon2-LICENSE.txt) -endif() diff --git a/libs/buildcjson.cmake b/libs/buildcjson.cmake deleted file mode 100644 index a84d9ba67..000000000 --- a/libs/buildcjson.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# cmake -P buildcjson.cmake - -set(SRC_DIR "${CMAKE_CURRENT_LIST_DIR}/cJSON") - -execute_process( - COMMAND ${CMAKE_COMMAND} -DTARGET=cjson -P download.cmake -) - -if(${SRC_DIR}/LICENSE IS_NEWER_THAN ${CMAKE_CURRENT_LIST_DIR}/doc_help/cJSON-LICENSE.txt) - file(COPY - ${SRC_DIR}/LICENSE - DESTINATION ${CMAKE_CURRENT_LIST_DIR}/doc_help) - file(RENAME - ${CMAKE_CURRENT_LIST_DIR}/doc_help/LICENSE - ${CMAKE_CURRENT_LIST_DIR}/doc_help/cJSON-LICENSE.txt) -endif() diff --git a/libs/buildlibressl.cmake b/libs/buildlibressl.cmake deleted file mode 100644 index f701f74a9..000000000 --- a/libs/buildlibressl.cmake +++ /dev/null @@ -1,134 +0,0 @@ -# for libreSSL -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=Win32 -P buildlibressl.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=x64 -P buildlibressl.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=ARM64 -P buildlibressl.cmake -# cmake -DCMAKE_GENERATOR="Unix Makefiles" -DARCHITECTURE=x86_64 -P buildlibressl.cmake -# cmake -DCMAKE_GENERATOR="Unix Makefiles" -DARCHITECTURE=i686 -P buildlibressl.cmake - -include(script_support.cmake) - -set(EXTRACT_DIR "${CMAKE_CURRENT_LIST_DIR}/build/libressl/src") -set(SRC_DIR "${EXTRACT_DIR}/libressl") -set(BUILD_DIR "${CMAKE_CURRENT_LIST_DIR}/build/libressl/build_${TOOLSET}") -set(INSTALL_DIR "${CMAKE_CURRENT_LIST_DIR}/libressl_${TOOLSET}") - -######################################## - -# Configure + Generate -function(cmake_generate GENERATOR SRC_DIR WORKING_DIR OPTIONS) - execute_process( - COMMAND ${CMAKE_COMMAND} ${SRC_DIR} -G "${GENERATOR}" ${OPTIONS} - WORKING_DIRECTORY "${BUILD_DIR}" - ENCODING AUTO - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") - endif() -endfunction() - -# build + install -function(cmake_build WORKING_DIR OPTIONS BUILD_TOOL_OPTIONS) - execute_process( - COMMAND ${CMAKE_COMMAND} --build . ${OPTIONS} --target install -- ${BUILD_TOOL_OPTIONS} - WORKING_DIRECTORY "${BUILD_DIR}" - ENCODING AUTO - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") - endif() -endfunction() - -######################################## - -file(MAKE_DIRECTORY ${SRC_DIR}) - -execute_process( - COMMAND ${CMAKE_COMMAND} -DTARGET=libressl -DEXT_DIR=${EXTRACT_DIR} -P download.cmake -) - -if(${SRC_DIR}/COPYING IS_NEWER_THAN ${CMAKE_CURRENT_LIST_DIR}/doc_help/LibreSSL-LICENSE.txt) - file(COPY - ${SRC_DIR}/COPYING - DESTINATION ${CMAKE_CURRENT_LIST_DIR}/doc_help) - file(RENAME - ${CMAKE_CURRENT_LIST_DIR}/doc_help/COPYING - ${CMAKE_CURRENT_LIST_DIR}/doc_help/LibreSSL-LICENSE.txt) -endif() - -function(file_copy SRC DEST_DIR DEST) - set(SRC_FILE ${SRC}) - set(DEST_FILE ${DEST_DIR}/${DEST}) - file(SHA256 ${SRC_FILE} SRC_HASH) - if (EXISTS ${DEST_FILE}) - file(SHA256 ${DEST_FILE} DEST_HASH) - else() - set(DEST_HASH "0") - endif() - if (NOT ${SRC_HASH} STREQUAL ${DEST_HASH}) - file(COPY ${SRC_FILE} DESTINATION ${DEST_DIR}) - endif() -endfunction() - -file_copy(${SRC_DIR}/include/compat/stdlib.h ${CMAKE_CURRENT_LIST_DIR}/include/compat stdlib.h) - -######################################## - -file(MAKE_DIRECTORY "${BUILD_DIR}") - -if(DEFINED ARCHITECTURE) - if(ARCHITECTURE STREQUAL "win32") - set(ARCHITECTURE "Win32") - endif() -endif() - -if("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - # multi-configuration - unset(GENERATE_OPTIONS) - if(DEFINED ARCHITECTURE) - list(APPEND GENERATE_OPTIONS "-A" ${ARCHITECTURE}) - endif() - list(APPEND GENERATE_OPTIONS "-DCMAKE_DEBUG_POSTFIX=d") - list(APPEND GENERATE_OPTIONS "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}") - list(APPEND GENERATE_OPTIONS "-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR}") - list(APPEND GENERATE_OPTIONS "-DLIBRESSL_TESTS=off") - list(APPEND GENERATE_OPTIONS "-DMSVC=on") - list(APPEND GENERATE_OPTIONS "-DUSE_STATIC_MSVC_RUNTIMES=on") - - cmake_generate("${CMAKE_GENERATOR}" "${SRC_DIR}" "${BUILD_DIR}" "${GENERATE_OPTIONS}") - - unset(BUILD_OPTIONS) - list(APPEND BUILD_OPTIONS --config Debug) - list(APPEND BUILD_OPTIONS --target crypto) - cmake_build("${BUILD_DIR}" "${BUILD_OPTIONS}" "") - - unset(BUILD_OPTIONS) - list(APPEND BUILD_OPTIONS --config Release) - list(APPEND BUILD_OPTIONS --target crypto) - cmake_build("${BUILD_DIR}" "${BUILD_OPTIONS}" "") -else() - # single-configuration - unset(GENERATE_OPTIONS) - list(APPEND GENERATE_OPTIONS "-DARCHITECTURE=${ARCHITECTURE}") - if(CMAKE_HOST_UNIX OR (DEFINED ENV{MSYSTEM})) - list(APPEND GENERATE_OPTIONS "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_LIST_DIR}/../mingw.toolchain.cmake") - endif() - if(("${CMAKE_GENERATOR}" MATCHES "Visual Studio") OR ("${CMAKE_GENERATOR}" MATCHES "NMake Makefiles")) - list(APPEND GENERATE_OPTIONS "-DMSVC=on") - list(APPEND GENERATE_OPTIONS "-DUSE_STATIC_MSVC_RUNTIMES=on") - endif() - list(APPEND GENERATE_OPTIONS "-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR}") - list(APPEND GENERATE_OPTIONS "-DCMAKE_BUILD_TYPE=Release") - list(APPEND GENERATE_OPTIONS "-DLIBRESSL_TESTS=off") - - cmake_generate("${CMAKE_GENERATOR}" "${SRC_DIR}" "${BUILD_DIR}" "${GENERATE_OPTIONS}") - - if(${CMAKE_GENERATOR} MATCHES "Unix Makefiles") - list(APPEND BUILD_TOOL_OPTIONS "-j") - endif() - - unset(BUILD_OPTIONS) - cmake_build("${BUILD_DIR}" "${BUILD_OPTIONS}" "${BUILD_TOOL_OPTIONS}") - -endif() diff --git a/libs/buildoniguruma.cmake b/libs/buildoniguruma.cmake deleted file mode 100644 index f31d81789..000000000 --- a/libs/buildoniguruma.cmake +++ /dev/null @@ -1,117 +0,0 @@ -# for oniguruma -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=Win32 -P buildoniguruma.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=x64 -P buildoniguruma.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=ARM64 -P buildoniguruma.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 8 2005" -P buildoniguruma.cmake -# cmake -DCMAKE_GENERATOR="Unix Makefiles" -DARCHITECTURE=x86_64 -P buildoniguruma.cmake -# cmake -DCMAKE_GENERATOR="Unix Makefiles" -DARCHITECTURE=i686 -P buildoniguruma.cmake - -include(script_support.cmake) - -set(EXTRACT_DIR "${CMAKE_CURRENT_LIST_DIR}/build/oniguruma/src") -set(SRC_DIR "${EXTRACT_DIR}/oniguruma") -set(BUILD_DIR "${CMAKE_CURRENT_LIST_DIR}/build/oniguruma/build_${TOOLSET}") -set(INSTALL_DIR "${CMAKE_CURRENT_LIST_DIR}/oniguruma_${TOOLSET}") - -######################################## - -# Configure + Generate -function(cmake_generate GENERATOR SRC_DIR WORKING_DIR OPTIONS) - execute_process( - COMMAND ${CMAKE_COMMAND} ${SRC_DIR} -G "${GENERATOR}" ${OPTIONS} - WORKING_DIRECTORY "${BUILD_DIR}" - ENCODING AUTO - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") - endif() -endfunction() - -# build + install -function(cmake_build WORKING_DIR OPTIONS BUILD_TOOL_OPTIONS) - execute_process( - COMMAND ${CMAKE_COMMAND} --build . ${OPTIONS} --target install -- ${BUILD_TOOL_OPTIONS} - WORKING_DIRECTORY "${BUILD_DIR}" - ENCODING AUTO - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") - endif() -endfunction() - -######################################## - -file(MAKE_DIRECTORY ${SRC_DIR}) - -execute_process( - COMMAND ${CMAKE_COMMAND} -DTARGET=oniguruma -DEXT_DIR=${EXTRACT_DIR} -P download.cmake -) - -if(${SRC_DIR}/COPYING IS_NEWER_THAN ${CMAKE_CURRENT_LIST_DIR}/doc_help/Oniguruma-LICENSE.txt) - file(COPY - ${SRC_DIR}/COPYING - DESTINATION ${CMAKE_CURRENT_LIST_DIR}/doc_help) - file(RENAME - ${CMAKE_CURRENT_LIST_DIR}/doc_help/COPYING - ${CMAKE_CURRENT_LIST_DIR}/doc_help/Oniguruma-LICENSE.txt) - file(COPY - ${SRC_DIR}/doc/RE - DESTINATION ${CMAKE_CURRENT_LIST_DIR}/doc_help/en) - file(COPY - ${SRC_DIR}/doc/RE.ja - DESTINATION ${CMAKE_CURRENT_LIST_DIR}/doc_help/ja) - file(RENAME - ${CMAKE_CURRENT_LIST_DIR}/doc_help/ja/RE.ja - ${CMAKE_CURRENT_LIST_DIR}/doc_help/ja/RE) -endif() - -######################################## - -file(MAKE_DIRECTORY "${BUILD_DIR}") - -if("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - # multi-configuration - unset(GENERATE_OPTIONS) - if(DEFINED ARCHITECTURE) - list(APPEND GENERATE_OPTIONS "-A" ${ARCHITECTURE}) - endif() - list(APPEND GENERATE_OPTIONS "-DCMAKE_DEBUG_POSTFIX=d") - list(APPEND GENERATE_OPTIONS "-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR}") - list(APPEND GENERATE_OPTIONS "-DBUILD_SHARED_LIBS=OFF") - list(APPEND GENERATE_OPTIONS "-DMSVC_STATIC_RUNTIME=ON") - - cmake_generate("${CMAKE_GENERATOR}" "${SRC_DIR}" "${BUILD_DIR}" "${GENERATE_OPTIONS}") - - unset(BUILD_OPTIONS) - list(APPEND BUILD_OPTIONS --config Debug) - cmake_build("${BUILD_DIR}" "${BUILD_OPTIONS}" "") - - unset(BUILD_OPTIONS) - list(APPEND BUILD_OPTIONS --config Release) - cmake_build("${BUILD_DIR}" "${BUILD_OPTIONS}" "") -else() - # single-configuration - unset(GENERATE_OPTIONS) - list(APPEND GENERATE_OPTIONS "-DARCHITECTURE=${ARCHITECTURE}") - if(CMAKE_HOST_UNIX) - list(APPEND GENERATE_OPTIONS "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_LIST_DIR}/../mingw.toolchain.cmake") - endif(CMAKE_HOST_UNIX) - if(("${CMAKE_GENERATOR}" MATCHES "Visual Studio") OR ("${CMAKE_GENERATOR}" MATCHES "NMake Makefiles")) - list(APPEND GENERATE_OPTIONS "-DMSVC_STATIC_RUNTIME=ON") - endif() - list(APPEND GENERATE_OPTIONS "-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR}") - list(APPEND GENERATE_OPTIONS "-DCMAKE_BUILD_TYPE=Release") - list(APPEND GENERATE_OPTIONS "-DBUILD_SHARED_LIBS=OFF") - - cmake_generate("${CMAKE_GENERATOR}" "${SRC_DIR}" "${BUILD_DIR}" "${GENERATE_OPTIONS}") - - if(${CMAKE_GENERATOR} MATCHES "Unix Makefiles") - list(APPEND BUILD_TOOL_OPTIONS "-j") - endif() - - unset(BUILD_OPTIONS) - cmake_build("${BUILD_DIR}" "${BUILD_OPTIONS}" "${BUILD_TOOL_OPTIONS}") - -endif() diff --git a/libs/buildopenssl3.cmake b/libs/buildopenssl3.cmake deleted file mode 100644 index a3a3d76ab..000000000 --- a/libs/buildopenssl3.cmake +++ /dev/null @@ -1,341 +0,0 @@ -# for OpenSSL 1.1.1 -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=Win32 -P buildopenssl3.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 16 2019" -DARCHITECTURE=Win32 -P buildopenssl3.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 15 2017" -P buildopenssl3.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 15 2017" -DCMAKE_CONFIGURATION_TYPE=Release -P buildopenssl3.cmake - -#### -if(("${CMAKE_BUILD_TYPE}" STREQUAL "") AND ("${CMAKE_CONFIGURATION_TYPE}" STREQUAL "")) - if("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - # multi-configuration - execute_process( - COMMAND ${CMAKE_COMMAND} - -DCMAKE_GENERATOR=${CMAKE_GENERATOR} - -DCMAKE_CONFIGURATION_TYPE=Release - -DCMAKE_TOOLCHAIN_FILE=${CMAKE_SOURCE_DIR}/VSToolchain.cmake - -DARCHITECTURE=${ARCHITECTURE} - -P buildopenssl3.cmake - ) - execute_process( - COMMAND ${CMAKE_COMMAND} - -DCMAKE_GENERATOR=${CMAKE_GENERATOR} - -DCMAKE_CONFIGURATION_TYPE=Debug - -DCMAKE_TOOLCHAIN_FILE=${CMAKE_SOURCE_DIR}/VSToolchain.cmake - -DARCHITECTURE=${ARCHITECTURE} - -P buildopenssl3.cmake - ) - return() - elseif("$ENV{MSYSTEM}" MATCHES "MINGW32") - # mingw on msys2 - # single-configuration - if("${CMAKE_BUILD_TYPE}" STREQUAL "") - set(CMAKE_BUILD_TYPE Release) - endif() - elseif("${CMAKE_GENERATOR}" MATCHES "Unix Makefiles") - # mingw - # single-configuration - if("${CMAKE_TOOLCHAIN_FILE}" STREQUAL "") - set(CMAKE_TOOLCHAIN_FILE "${CMAKE_SOURCE_DIR}/../mingw.toolchain.cmake") - endif() - if("${CMAKE_BUILD_TYPE}" STREQUAL "") - set(CMAKE_BUILD_TYPE Release) - endif() - elseif("${CMAKE_GENERATOR}" MATCHES "NMake Makefiles") - # VS nmake - # single-configuration - if("${CMAKE_TOOLCHAIN_FILE}" STREQUAL "") - set(CMAKE_TOOLCHAIN_FILE "${CMAKE_SOURCE_DIR}/VSToolchain.cmake") - endif() - if("${CMAKE_BUILD_TYPE}" STREQUAL "") - set(CMAKE_BUILD_TYPE Release) - endif() - else() - # single-configuration - if("${CMAKE_BUILD_TYPE}" STREQUAL "") - set(CMAKE_BUILD_TYPE Release) - endif() - endif() -endif() - -include(script_support.cmake) - -set(SRC_DIR_BASE "openssl-3.0.1") -set(SRC_ARC "openssl-3.0.1.tar.gz") -set(SRC_URL "https://www.openssl.org/source/openssl-3.0.1.tar.gz") -set(SRC_ARC_HASH_SHA256 c311ad853353bce796edad01a862c50a8a587f62e7e2100ef465ab53ec9b06d1) - -set(DOWN_DIR "${CMAKE_SOURCE_DIR}/download/openssl") - -set(EXTRACT_DIR "${CMAKE_SOURCE_DIR}/build/openssl3/src_${TOOLSET}") -set(INSTALL_DIR "${CMAKE_SOURCE_DIR}/openssl3_${TOOLSET}") -if(("${CMAKE_GENERATOR}" MATCHES "Win64") OR ("$ENV{MSYSTEM_CHOST}" STREQUAL "x86_64-w64-mingw32") OR ("${ARCHITECTURE}" MATCHES "x64") OR ("${CMAKE_COMMAND}" MATCHES "mingw64")) - set(EXTRACT_DIR "${EXTRACT_DIR}_x64") - set(INSTALL_DIR "${INSTALL_DIR}_x64") -endif() -if((${CMAKE_GENERATOR} MATCHES "Visual Studio") AND ("${CMAKE_CONFIGURATION_TYPE}" STREQUAL "Debug")) - set(EXTRACT_DIR "${EXTRACT_DIR}_debug") - set(INSTALL_DIR "${INSTALL_DIR}_debug") -endif() -set(SRC_DIR "${EXTRACT_DIR}/${SRC_DIR_BASE}") - -######################################## - -file(DOWNLOAD - ${SRC_URL} - ${DOWN_DIR}/${SRC_ARC} - EXPECTED_HASH SHA256=${SRC_ARC_HASH_SHA256} - SHOW_PROGRESS - ) - -######################################## - -if(CMAKE_HOST_SYSTEM_NAME MATCHES "Linux") - find_program( - PERL perl - ) -elseif("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - # Active/Strawberry Perl - find_program( - PERL perl.exe - HINTS ${CMAKE_CURRENT_LIST_DIR}/../buildtools/perl/perl/bin - HINTS c:/Perl64/bin - HINTS c:/Perl/bin - HINTS c:/Strawberry/perl/bin - ) - if("${PERL}" MATCHES "[Cc]ygwin") - message(FATAL_ERROR "cygwin perl! ${PERL}") - endif() -else() - # MinGW - find_program( - PERL perl - HINTS C:/msys64/usr/bin - ) -endif() - -if(${PERL} STREQUAL "PERL-NOTFOUND") - message(FATAL_ERROR "perl not found") -endif() - -######################################## - -if(NOT EXISTS "${SRC_DIR}/README.md") - - execute_process( - COMMAND ${CMAKE_COMMAND} -E make_directory ${EXTRACT_DIR} - ) - - execute_process( - COMMAND ${CMAKE_COMMAND} -E tar "xvf" ${DOWN_DIR}/${SRC_ARC} - WORKING_DIRECTORY ${EXTRACT_DIR} - ) - - file(COPY - ${SRC_DIR}/LICENSE.txt - DESTINATION ${CMAKE_CURRENT_LIST_DIR}/doc_help - ) - file(RENAME - ${CMAKE_CURRENT_LIST_DIR}/doc_help/LICENSE.txt - ${CMAKE_CURRENT_LIST_DIR}/doc_help/OpenSSL3-LICENSE.txt) - -endif() - -######################################## - -if((${CMAKE_GENERATOR} MATCHES "Visual Studio") OR - (${CMAKE_GENERATOR} MATCHES "NMake Makefiles")) - ######################################## VS - if(${CMAKE_GENERATOR} MATCHES "NMake Makefiles") - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 17 2022") - find_program( - VCVARS32 vcvarsall.bat - HINTS "C:/Program Files/Microsoft Visual Studio/2022/Preview/VC/Auxiliary/Build" - HINTS "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Auxiliary/Build" - HINTS "C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Auxiliary/Build" - HINTS "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 16 2019") - find_program( - VCVARS32 vcvarsall.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Auxiliary/Build" - HINTS "C:/Program Files (x86)/Microsoft Visual Studio/2019/Professional/VC/Auxiliary/Build" - HINTS "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 15 2017") - find_program( - VCVARS32 vcvarsall.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Auxiliary/Build" - HINTS "C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/VC/Auxiliary/Build" - HINTS "C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Auxiliary/Build" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 14 2015") - find_program( - VCVARS32 vcvars32.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 12 2013") - find_program( - VCVARS32 vcvars32.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 11 2012") - find_program( - VCVARS32 vcvars32.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio 11.0/VC/bin" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 10 2010") - find_program( - VCVARS32 vcvars32.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 9 2008") - find_program( - VCVARS32 vcvars32.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio 9.0/VC/bin" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 8 2005") - find_program( - VCVARS32 vcvars32.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio 8/VC/bin" - ) - else() - message(FATAL_ERROR "CMAKE_GENERATOR ${CMAKE_GENERATOR} not supported") - endif() - if(VCVARS32-NOTFOUND OR (${VCVARS32} STREQUAL "VCVARS32-NOTFOUND")) - message(FATAL_ERROR "vcvars32.bat not found") - endif() - - if((${CMAKE_GENERATOR} MATCHES "Win64") OR ("${ARCHITECTURE}" MATCHES "x64")) - set(CONFIG_TARGET "VC-WIN64A") - else() - set(CONFIG_TARGET "VC-WIN32") - endif() - if(("${CMAKE_BUILD_TYPE}" STREQUAL "Release") OR ("${CMAKE_CONFIGURATION_TYPE}" STREQUAL "Release")) - else() - set(CONFIG_TARGET "debug-${CONFIG_TARGET}") - endif() - - file(WRITE "${SRC_DIR}/build_cmake.bat" - "cd /d %~dp0\n" - "setlocal\n" - ) - file(TO_NATIVE_PATH ${PERL} PERL_N) - file(TO_NATIVE_PATH ${INSTALL_DIR} INSTALL_DIR_N) - file(TO_NATIVE_PATH ${VCVARS32} VCVARS32_N) - string(REGEX REPLACE [[^(.*)\\.*$]] [[\1]] PERL_N_PATH ${PERL_N}) - file(APPEND "${SRC_DIR}/build_cmake.bat" - "set PATH=${PERL_N_PATH};c:\\windows;c:\\windows\\system32\n" - ) - if(${CMAKE_GENERATOR} MATCHES "Visual Studio 8 2005") - ## Visual Studio 2005 特別処理 - # include,libパスの設定 - file(APPEND "${SRC_DIR}/build_cmake.bat" - "set SDK=C:\\Program Files\\Microsoft SDKs\\Windows\\v7.1\n" - "set INCLUDE=%SDK%\\Include;%INCLUDE%\n" - "set LIB=%SDK%\\lib;%LIB%\n" - ) - endif() - if((${CMAKE_GENERATOR} MATCHES "Visual Studio 16 2019") OR ${CMAKE_GENERATOR} MATCHES "Visual Studio 17 2022") - if("${ARCHITECTURE}" MATCHES "x64") - file(APPEND "${SRC_DIR}/build_cmake.bat" - "call \"${VCVARS32_N}\" amd64\n" - ) - else() - file(APPEND "${SRC_DIR}/build_cmake.bat" - "call \"${VCVARS32_N}\" x86\n" - ) - endif() - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 15 2017 Win64") - file(APPEND "${SRC_DIR}/build_cmake.bat" - "call \"${VCVARS32_N}\" amd64\n" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 15 2017") - file(APPEND "${SRC_DIR}/build_cmake.bat" - "call \"${VCVARS32_N}\" x86\n" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio") - file(APPEND "${SRC_DIR}/build_cmake.bat" - "call \"${VCVARS32_N}\"\n" - ) - endif() - file(APPEND "${SRC_DIR}/build_cmake.bat" - "perl Configure no-asm no-async no-shared no-capieng no-dso no-engine ${CONFIG_TARGET} -D_WIN32_WINNT=0x0501 --prefix=${INSTALL_DIR_N} --openssldir=${INSTALL_DIR_N}\\SSL\n" - "nmake -f makefile install\n" - ) - set(BUILD_CMAKE_BAT "${SRC_DIR}/build_cmake.bat") - file(TO_NATIVE_PATH ${BUILD_CMAKE_BAT} BUILD_CMAKE_BAT_N) - execute_process( - COMMAND cmd /c ${BUILD_CMAKE_BAT_N} - WORKING_DIRECTORY ${SRC_DIR} - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") - endif() -else() - ######################################## MinGW - execute_process( - COMMAND "uname" -s - OUTPUT_VARIABLE ov) - string(REGEX MATCH "[A-Za-z0-9]+" UNAME_S ${ov}) - if("${UNAME_S}" STREQUAL "CYGWIN") - find_program( - MAKE make.exe - HINTS c:/cygwin/usr/bin - HINTS c:/cygwin64/usr/bin - ) - elseif(("${UNAME_S}" STREQUAL "MINGW32") OR ("${UNAME_S}" STREQUAL "MINGW64") OR ("${CMAKE_COMMAND}" MATCHES "mingw")) - find_program( - MAKE make - ) - elseif(CMAKE_HOST_SYSTEM_NAME MATCHES "Linux") - find_program( - MAKE make - ) - else() - message(FATAL_ERROR "unsported") - endif() - set(ENV{PATH} "/usr/bin;/bin") - if(("${UNAME_S}" STREQUAL "MINGW32") OR ("${CMAKE_COMMAND}" MATCHES "mingw32")) - set(CMAKE_C_COMPILER "cc") - set(PATH "/mingw32/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/core_perl") - set(CONFIG_NAME "mingw") - elseif(("${UNAME_S}" STREQUAL "MINGW64") OR ("${CMAKE_COMMAND}" MATCHES "mingw64")) - set(CMAKE_C_COMPILER "cc") - set(PATH "/mingw64/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/core_perl") - set(CONFIG_NAME "mingw64") - else() - include(${CMAKE_SOURCE_DIR}/../mingw.toolchain.cmake) - set(ENV{CC} ${CMAKE_C_COMPILER}) - set(ENV{AR} "i686-w64-mingw32-ar") - set(ENV{RANLIB} "i686-w64-mingw32-ranlib") - set(ENV{RC} "i686-w64-mingw32-windres") - set(PATH "/usr/bin:/bin") - set(CONFIG_NAME "mingw") - endif() - execute_process( - COMMAND ${CMAKE_COMMAND} -E env "PATH=/usr/bin:/bin" ${PERL} ./Configure no-asm no-async no-shared no-capieng -no-dso -no-engine ${CONFIG_NAME} -D_WIN32_WINNT=0x0501 --prefix=${INSTALL_DIR} --openssldir=${INSTALL_DIR}/SSL - WORKING_DIRECTORY ${SRC_DIR} - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake configure fail ${rv}") - endif() - set(MAKE_OPTION "-j") - execute_process( - COMMAND ${CMAKE_COMMAND} -E env "PATH=${PATH}" ${MAKE} CC=${CMAKE_C_COMPILER} ${MAKE_OPTION} - WORKING_DIRECTORY ${SRC_DIR} - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") - endif() - execute_process( - COMMAND ${CMAKE_COMMAND} -E env "PATH=${PATH}" ${MAKE} install ${MAKE_OPTION} - WORKING_DIRECTORY ${SRC_DIR} - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake install fail ${rv}") - endif() -endif() diff --git a/libs/buildsfmt.cmake b/libs/buildsfmt.cmake deleted file mode 100644 index ff8dcb658..000000000 --- a/libs/buildsfmt.cmake +++ /dev/null @@ -1,142 +0,0 @@ -# for SFMT -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=Win32 -P buildsfmt.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=x64 -P buildsfmt.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=ARM64 -P buildsfmt.cmake -# cmake -DCMAKE_GENERATOR="Unix Makefiles" -DARCHITECTURE=x86_64 -P buildsfmt.cmake -# cmake -DCMAKE_GENERATOR="Unix Makefiles" -DARCHITECTURE=i686 -P buildsfmt.cmake - -include(script_support.cmake) - -set(EXTRACT_DIR "${CMAKE_CURRENT_LIST_DIR}/build/SFMT/src") -set(SRC_DIR "${EXTRACT_DIR}/SFMT") -set(INSTALL_DIR "${CMAKE_CURRENT_LIST_DIR}/SFMT_${TOOLSET}") -set(BUILD_DIR "${CMAKE_CURRENT_LIST_DIR}/build/SFMT/build_${TOOLSET}") - -######################################## - -# Configure + Generate -function(cmake_generate GENERATOR SRC_DIR WORKING_DIR OPTIONS) - execute_process( - COMMAND ${CMAKE_COMMAND} ${SRC_DIR} -G "${GENERATOR}" ${OPTIONS} - WORKING_DIRECTORY "${BUILD_DIR}" - ENCODING AUTO - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") - endif() -endfunction() - -# build + install -function(cmake_build WORKING_DIR OPTIONS BUILD_TOOL_OPTIONS) - execute_process( - COMMAND ${CMAKE_COMMAND} --build . ${OPTIONS} --target install -- ${BUILD_TOOL_OPTIONS} - WORKING_DIRECTORY "${BUILD_DIR}" - ENCODING AUTO - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") - endif() -endfunction() - -######################################## - -file(MAKE_DIRECTORY ${SRC_DIR}) - -execute_process( - COMMAND ${CMAKE_COMMAND} -DTARGET=sfmt -DEXT_DIR=${EXTRACT_DIR} -P download.cmake -) - -if(${SRC_DIR}/COPYING IS_NEWER_THAN ${CMAKE_CURRENT_LIST_DIR}/doc_help/SFMT-LICENSE.txt) - file(COPY - ${SRC_DIR}/LICENSE.txt - DESTINATION ${CMAKE_CURRENT_LIST_DIR}/doc_help) - file(RENAME - ${CMAKE_CURRENT_LIST_DIR}/doc_help/LICENSE.txt - ${CMAKE_CURRENT_LIST_DIR}/doc_help/SFMT-LICENSE.txt) -endif() - -######################################## - -if(NOT EXISTS ${SRC_DIR}/CMakeLists.txt) - file(WRITE "${SRC_DIR}/CMakeLists.txt" - "cmake_minimum_required(VERSION 3.11.4)\n" - "project(SFMT C)\n" - "\n" - "if(MSVC)\n" - " set(CMAKE_DEBUG_POSTFIX \"d\")\n" - " string(REPLACE \"/MD\" \"/MT\" CMAKE_C_FLAGS_DEBUG \${CMAKE_C_FLAGS_DEBUG})\n" - " string(REPLACE \"/MD\" \"/MT\" CMAKE_C_FLAGS_RELEASE \${CMAKE_C_FLAGS_RELEASE})\n" - "endif()\n" - "\n" - "add_library(\n" - " sfmt STATIC\n" - " SFMT.c\n" - " )\n" - "\n" - "if(MSVC)\n" - " target_compile_options(sfmt\n" - " PRIVATE\n" - " $<$:/MT>\n" - " $<$:/MTd>\n" - " $<$:/MT>)\n" - "endif()\n" - "\n" - "install(\n" - " TARGETS sfmt\n" - " ARCHIVE DESTINATION \${CMAKE_INSTALL_PREFIX}/lib\n" - " )\n" - "install(\n" - " FILES\n" - " SFMT.h SFMT-params.h SFMT-params19937.h\n" - " SFMT_version_for_teraterm.h\n" - " DESTINATION \${CMAKE_INSTALL_PREFIX}/include\n" - " )\n" - ) -endif() - -######################################## - -file(MAKE_DIRECTORY "${BUILD_DIR}") - -if("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - # multi-configuration - unset(GENERATE_OPTIONS) - if(DEFINED ARCHITECTURE) - list(APPEND GENERATE_OPTIONS "-A" ${ARCHITECTURE}) - endif() - list(APPEND GENERATE_OPTIONS "-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR}") - list(APPEND GENERATE_OPTIONS "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_LIST_DIR}/VSToolchain.cmake") - cmake_generate("${CMAKE_GENERATOR}" "${SRC_DIR}" "${BUILD_DIR}" "${GENERATE_OPTIONS}") - - unset(BUILD_OPTIONS) - list(APPEND BUILD_OPTIONS --config Debug) - cmake_build("${BUILD_DIR}" "${BUILD_OPTIONS}" "") - - unset(BUILD_OPTIONS) - list(APPEND BUILD_OPTIONS --config Release) - cmake_build("${BUILD_DIR}" "${BUILD_OPTIONS}" "") -else() - # single-configuration - unset(GENERATE_OPTIONS) - list(APPEND GENERATE_OPTIONS "-DARCHITECTURE=${ARCHITECTURE}") - if(CMAKE_HOST_UNIX) - list(APPEND GENERATE_OPTIONS "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_LIST_DIR}/../mingw.toolchain.cmake") - endif(CMAKE_HOST_UNIX) - if(("${CMAKE_GENERATOR}" MATCHES "Visual Studio") OR ("${CMAKE_GENERATOR}" MATCHES "NMake Makefiles")) - list(APPEND GENERATE_OPTIONS "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_LIST_DIR}/VSToolchain.cmake") - endif() - list(APPEND GENERATE_OPTIONS "-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR}") - list(APPEND GENERATE_OPTIONS "-DCMAKE_BUILD_TYPE=Release") - - cmake_generate("${CMAKE_GENERATOR}" "${SRC_DIR}" "${BUILD_DIR}" "${GENERATE_OPTIONS}") - - if(${CMAKE_GENERATOR} MATCHES "Unix Makefiles") - list(APPEND BUILD_TOOL_OPTIONS "-j") - endif() - - unset(BUILD_OPTIONS) - cmake_build("${BUILD_DIR}" "${BUILD_OPTIONS}" "${BUILD_TOOL_OPTIONS}") - -endif() diff --git a/libs/buildzlib.cmake b/libs/buildzlib.cmake deleted file mode 100644 index e5ba1b360..000000000 --- a/libs/buildzlib.cmake +++ /dev/null @@ -1,103 +0,0 @@ -# for zlib -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=Win32 -P buildzlib.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=x64 -P buildzlib.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 17 2022" -DARCHITECTURE=ARM64 -P buildzlib.cmake -# cmake -DCMAKE_GENERATOR="Unix Makefiles" -DARCHITECTURE=x86_64 -P buildzlib.cmake -# cmake -DCMAKE_GENERATOR="Unix Makefiles" -DARCHITECTURE=i686 -P buildzlib.cmake - -include(script_support.cmake) - -set(EXTRACT_DIR "${CMAKE_CURRENT_LIST_DIR}/build/zlib/src") -set(SRC_DIR "${EXTRACT_DIR}/zlib") -set(BUILD_DIR "${CMAKE_CURRENT_LIST_DIR}/build/zlib/build_${TOOLSET}") -set(INSTALL_DIR "${CMAKE_CURRENT_LIST_DIR}/zlib_${TOOLSET}") - -######################################## - -# Configure + Generate -function(cmake_generate GENERATOR SRC_DIR WORKING_DIR OPTIONS) - execute_process( - COMMAND ${CMAKE_COMMAND} ${SRC_DIR} -G "${GENERATOR}" ${OPTIONS} - WORKING_DIRECTORY "${BUILD_DIR}" - ENCODING AUTO - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") - endif() -endfunction() - -# build + install -function(cmake_build WORKING_DIR OPTIONS BUILD_TOOL_OPTIONS) - execute_process( - COMMAND ${CMAKE_COMMAND} --build . ${OPTIONS} --target install -- ${BUILD_TOOL_OPTIONS} - WORKING_DIRECTORY "${BUILD_DIR}" - ENCODING AUTO - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") - endif() -endfunction() - -######################################## - -file(MAKE_DIRECTORY ${SRC_DIR}) - -execute_process( - COMMAND ${CMAKE_COMMAND} -DTARGET=zlib -DEXT_DIR=${EXTRACT_DIR} -P download.cmake -) - -if(${SRC_DIR}/COPYING IS_NEWER_THAN ${CMAKE_CURRENT_LIST_DIR}/doc_help/zlib-LICENSE.txt) - file(COPY - ${SRC_DIR}/README - DESTINATION ${CMAKE_CURRENT_LIST_DIR}/doc_help) - file(RENAME - ${CMAKE_CURRENT_LIST_DIR}/doc_help/README - ${CMAKE_CURRENT_LIST_DIR}/doc_help/zlib-LICENSE.txt) -endif() - -######################################## - -file(MAKE_DIRECTORY "${BUILD_DIR}") - -if("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - # multi-configuration - unset(GENERATE_OPTIONS) - if(DEFINED ARCHITECTURE) - list(APPEND GENERATE_OPTIONS "-A" ${ARCHITECTURE}) - endif() - list(APPEND GENERATE_OPTIONS "-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR}") - list(APPEND GENERATE_OPTIONS "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_LIST_DIR}/VSToolchain.cmake") - cmake_generate("${CMAKE_GENERATOR}" "${SRC_DIR}" "${BUILD_DIR}" "${GENERATE_OPTIONS}") - - unset(BUILD_OPTIONS) - list(APPEND BUILD_OPTIONS --config Debug) - cmake_build("${BUILD_DIR}" "${BUILD_OPTIONS}" "") - - unset(BUILD_OPTIONS) - list(APPEND BUILD_OPTIONS --config Release) - cmake_build("${BUILD_DIR}" "${BUILD_OPTIONS}" "") -else() - # single-configuration - unset(GENERATE_OPTIONS) - list(APPEND GENERATE_OPTIONS "-DARCHITECTURE=${ARCHITECTURE}") - if(CMAKE_HOST_UNIX) - list(APPEND GENERATE_OPTIONS "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_LIST_DIR}/../mingw.toolchain.cmake") - endif(CMAKE_HOST_UNIX) - if(("${CMAKE_GENERATOR}" MATCHES "Visual Studio") OR ("${CMAKE_GENERATOR}" MATCHES "NMake Makefiles")) - list(APPEND GENERATE_OPTIONS "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_CURRENT_LIST_DIR}/VSToolchain.cmake") - endif() - list(APPEND GENERATE_OPTIONS "-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR}") - list(APPEND GENERATE_OPTIONS "-DCMAKE_BUILD_TYPE=Release") - - cmake_generate("${CMAKE_GENERATOR}" "${SRC_DIR}" "${BUILD_DIR}" "${GENERATE_OPTIONS}") - - if(${CMAKE_GENERATOR} MATCHES "Unix Makefiles") - list(APPEND BUILD_TOOL_OPTIONS "-j") - endif() - - unset(BUILD_OPTIONS) - cmake_build("${BUILD_DIR}" "${BUILD_OPTIONS}" "${BUILD_TOOL_OPTIONS}") - -endif() diff --git a/libs/download.cmake b/libs/download.cmake deleted file mode 100644 index 53f00d6ee..000000000 --- a/libs/download.cmake +++ /dev/null @@ -1,347 +0,0 @@ -# -# ex: -# cmake -P download.cmake -# cmake -DFORCE_DOWNLOAD=on -P download.cmake -# memo: -# スクリプト中のコメントのないhash値は、 -# TeraTerm Project が独自に算出したものです - -option(FORCE_DOWNLOAD "force download" OFF) -option(FORCE_EXTRACT "force extract" OFF) - -# download_extract() -# ファイルをダウンロードして、展開する -# -# ファイルが展開されているかチェック -# EXT_DIR 展開されているフォルダ -# CHECK_FILE アーカイブの中にあり、hashをチェックするファイル(チェックファイル) -# このファイルの有無とhashをチェックする -# ${EXT_DIR}相対 ${EXT_DIR}/${CHECK_FILE} -# CHECK_FILE_HASH チェックファイルhash値(sha256) -# ダウンロード -# SRC_URL アーカイブファイルのURL -# ARC_HASH アーカイブファイルのhash値 -# または、hashの入っているファイルのURL -# DOWN_DIR ダウンロードしたファイルの収納ディレクトリ -# 展開 -# DIR_IN_ARC アーカイブ内のフォルダ名 -# RENAME_DIR 展開後 ${DIR_IN_ARC} をリネーム -# ${EXT_DIR}/${RENAME_DIR} ができる -function(download_extract SRC_URL ARC_HASH DOWN_DIR EXT_DIR DIR_IN_ARC RENAME_DIR CHECK_FILE CHECK_FILE_HASH) - - # ファイルが展開されているかチェック - if((NOT FORCE_EXTRACT) AND (NOT FORCE_DOWNLOAD)) - if(EXISTS ${EXT_DIR}/${CHECK_FILE}) - file(SHA256 ${EXT_DIR}/${CHECK_FILE} CHECK_FILE_HASH_ACTUAL) - - message("CHECK_FILE: ${EXT_DIR}/${CHECK_FILE}") - message("ACTUAL_HASH: ${CHECK_FILE_HASH_ACTUAL}") - message("EXPECT_HASH: ${CHECK_FILE_HASH}") - - # ファイルが展開されていて、チェックファイルのhashが一致したら終了 - if(${CHECK_FILE_HASH_ACTUAL} STREQUAL ${CHECK_FILE_HASH}) - message("Hash match.") - return() - endif() - - message("Hash mismatch.") - else() - message("CHECK_FILE: ${EXT_DIR}/${CHECK_FILE}") - message("File not found.") - endif() - endif() - - - # アーカイブファイル名(フォルダ含まない) - string(REGEX REPLACE "(.*)/([^/]*)$" "\\2" SRC_ARC ${SRC_URL}) - - # アーカイブファイルのhash値 - if("${ARC_HASH}" MATCHES "http") - # download the `hash file` - string(REGEX REPLACE "(.*)/([^/]*)$" "\\2" HASH_FNAME ${ARC_HASH}) - if((NOT EXISTS ${DOWN_DIR}/${HASH_FNAME}) OR FORCE_DOWNLOAD) - message("download ${ARC_HASH}") - file(DOWNLOAD - ${ARC_HASH} - ${DOWN_DIR}/${HASH_FNAME} - SHOW_PROGRESS - ) - endif() - file(STRINGS ${DOWN_DIR}/${HASH_FNAME} ARC_FILE_HASH) - string(REGEX REPLACE "^(.+) (.+)$" "\\1" ARC_FILE_HASH ${ARC_FILE_HASH}) - else() - # 渡された値そのまま - set(ARC_FILE_HASH ${ARC_HASH}) - endif() - - # ARC_FILE_HASHの文字長からhashの種別を決める - string(LENGTH ${ARC_FILE_HASH} HASH_LEN) - if(${HASH_LEN} EQUAL 64) - set(ARC_HASH_TYPE "SHA256") - else() - message(FATAL_ERROR "unknwon hash HASH=${ARC_FILE_HASH} HASH_LEN=${HASH_LEN}") - endif() - - set(DO_DOWNLOAD 1) - if(NOT FORCE_DOWNLOAD) - if(EXISTS ${DOWN_DIR}/${SRC_ARC}) - file(${ARC_HASH_TYPE} ${DOWN_DIR}/${SRC_ARC} ARC_FILE_HASH_ACTUAL) - - message("ARCHIVE: ${DOWN_DIR}/${SRC_ARC}") - message("ACTUAL_HASH: ${ARC_HASH_TYPE}=${ARC_FILE_HASH_ACTUAL}") - message("EXPECT_HASH: ${ARC_HASH_TYPE}=${ARC_FILE_HASH}") - - # ファイルがダウンロードされていて、アーカイブファイルのhashが一致したらダウンロードしない - if(${ARC_FILE_HASH} STREQUAL ${ARC_FILE_HASH_ACTUAL}) - message("Hash match.") - set(DO_DOWNLOAD 0) - else() - message("Hash mismatch.") - endif() - endif() - endif() - - if(DO_DOWNLOAD) - # アーカイブをダウンロード - message("download ${SRC_URL}") - set(MAX_RETRIES 3) - set(RETRY_WAIT 30) - set(RETRY_COUNT 0) - set(DOWNLOAD_SUCCESS FALSE) - while(NOT DOWNLOAD_SUCCESS AND - (RETRY_COUNT LESS MAX_RETRIES OR RETRY_COUNT EQUAL MAX_RETRIES)) - # リトライの前に待つ - if(RETRY_COUNT GREATER 0 AND - (RETRY_COUNT LESS MAX_RETRIES OR RETRY_COUNT EQUAL MAX_RETRIES)) - message("Wait ${RETRY_WAIT} sec...") - execute_process(COMMAND ${CMAKE_COMMAND} -E sleep ${RETRY_WAIT}) - message("Retrying...") - endif() - - # ダウンロード - file(DOWNLOAD - ${SRC_URL} - ${DOWN_DIR}/${SRC_ARC} - SHOW_PROGRESS - STATUS st - LOG log - ) - - # ダウンロードのステータスを判定 - list(GET st 0 status_code) - if(status_code EQUAL 0) - set(DOWNLOAD_SUCCESS TRUE) - else() - message("Download failed. ${st} ${log}") - if(RETRY_COUNT EQUAL MAX_RETRIES) - message(FATAL_ERROR "Maximum number of retries reached.") - endif() - math(EXPR RETRY_COUNT "${RETRY_COUNT} + 1") - endif() - endwhile() - - # アーカイブファイルのhashをチェクする - file(${ARC_HASH_TYPE} ${DOWN_DIR}/${SRC_ARC} ARC_FILE_HASH_ACTUAL) - message("ARCHIVE: ${DOWN_DIR}/${SRC_ARC}") - message("ACTUAL_HASH: ${ARC_HASH_TYPE}=${ARC_FILE_HASH_ACTUAL}") - message("EXPECT_HASH: ${ARC_HASH_TYPE}=${ARC_FILE_HASH}") - if(NOT ${ARC_FILE_HASH} STREQUAL ${ARC_FILE_HASH_ACTUAL}) - message(FATAL_ERROR "Hash mismatch.") - endif() - message("Hash match.") - endif() - - # アーカイブファイルを展開する - message("expand ${EXT_DIR}/${DIR_IN_ARC}") - file(MAKE_DIRECTORY ${EXT_DIR}) - execute_process( - COMMAND ${CMAKE_COMMAND} -E tar "xf" ${DOWN_DIR}/${SRC_ARC} - WORKING_DIRECTORY ${EXT_DIR} - ) - - # renameする - message("rename ${EXT_DIR}/${RENAME_DIR}") - file(REMOVE_RECURSE ${EXT_DIR}/${RENAME_DIR}) - file(RENAME ${EXT_DIR}/${DIR_IN_ARC} ${EXT_DIR}/${RENAME_DIR}) - -endfunction() - - -# argon2 -function(download_argon2) - message("argon2") - set(EXT_DIR "${CMAKE_CURRENT_LIST_DIR}") - set(DIR_IN_ARC "phc-winner-argon2-20190702") - set(RENAME_DIR "argon2") - set(CHECK_FILE "argon2/CHANGELOG.md") - set(CHECK_FILE_HASH "1b513eb6524f0a3ac5e182bf2713618ddd8f2616ebe6e090d647c49b3e7eb2ec") - set(SRC_URL "https://github.com/P-H-C/phc-winner-argon2/archive/refs/tags/20190702.tar.gz") - set(ARC_HASH "daf972a89577f8772602bf2eb38b6a3dd3d922bf5724d45e7f9589b5e830442c") - # ARC_HASH by TeraTerm Project - set(DOWN_DIR "${CMAKE_CURRENT_LIST_DIR}/download/argon2") - download_extract( - ${SRC_URL} - ${ARC_HASH} - ${DOWN_DIR} - ${EXT_DIR} - ${DIR_IN_ARC} - ${RENAME_DIR} - ${CHECK_FILE} - ${CHECK_FILE_HASH} - ) -endfunction() - -# cJSON -function(download_cjson) - message("cJSON") - set(EXT_DIR "${CMAKE_CURRENT_LIST_DIR}") - set(DIR_IN_ARC "cJSON-1.7.14") - set(RENAME_DIR "cJSON") - set(CHECK_FILE "cJSON/CHANGELOG.md") - set(CHECK_FILE_HASH "4ff95e0060ea2dbc13720079399e77d404d89e514b569fcc8d741f3272c98e53") - set(SRC_URL "https://github.com/DaveGamble/cJSON/archive/v1.7.14.zip") - set(ARC_HASH "d797b4440c91a19fa9c721d1f8bab21078624aa9555fc64c5c82e24aa2a08221") - # ARC_HASH by TeraTerm Project - set(DOWN_DIR "${CMAKE_CURRENT_LIST_DIR}/download/cJSON") - download_extract( - ${SRC_URL} - ${ARC_HASH} - ${DOWN_DIR} - ${EXT_DIR} - ${DIR_IN_ARC} - ${RENAME_DIR} - ${CHECK_FILE} - ${CHECK_FILE_HASH} - ) -endfunction() - -# libressl -function(download_libressl) - message("libressl") - set(DIR_IN_ARC "libressl-4.2.1") - set(RENAME_DIR "libressl") - set(CHECK_FILE "libressl/ChangeLog") - set(CHECK_FILE_HASH "f99c885d5318dc6357b4bb3563c0fb7ea536ff1734c67a436aa2532ebb4b5bd7") - set(SRC_URL "https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-4.2.1.tar.gz") - set(ARC_HASH "6d5c2f58583588ea791f4c8645004071d00dfa554a5bf788a006ca1eb5abd70b") - # ARC_HASH was picked from https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/SHA256 - set(DOWN_DIR "${CMAKE_CURRENT_LIST_DIR}/download/libressl") - download_extract( - ${SRC_URL} - ${ARC_HASH} - ${DOWN_DIR} - ${EXT_DIR} - ${DIR_IN_ARC} - ${RENAME_DIR} - ${CHECK_FILE} - ${CHECK_FILE_HASH} - ) -endfunction() - -# oniguruma -function(download_oniguruma) - message("oniguruma") - set(DIR_IN_ARC "onig-6.9.10") - set(RENAME_DIR "oniguruma") - set(CHECK_FILE "oniguruma/HISTORY") - set(CHECK_FILE_HASH "bdf00b251fa9dfb2aea3e1c007a0994bd40203a56706402c7cebb976c41d0cae") - set(SRC_URL "https://github.com/kkos/oniguruma/releases/download/v6.9.10/onig-6.9.10.tar.gz") - set(ARC_HASH "https://github.com/kkos/oniguruma/releases/download/v6.9.10/onig-6.9.10.tar.gz.sha256") - set(DOWN_DIR "${CMAKE_CURRENT_LIST_DIR}/download/oniguruma") - download_extract( - ${SRC_URL} - ${ARC_HASH} - ${DOWN_DIR} - ${EXT_DIR} - ${DIR_IN_ARC} - ${RENAME_DIR} - ${CHECK_FILE} - ${CHECK_FILE_HASH} - ) -endfunction() - -# SFMT -function(download_sfmt) - message("SFMT") - set(DIR_IN_ARC "SFMT-src-1.5.1") - set(RENAME_DIR "SFMT") - set(CHECK_FILE "SFMT/CHANGE-LOG.txt") - set(CHECK_FILE_HASH "ac65302c740579c7dccc99b2fcd735af3027957680f2ce227042755646abb1db") - set(SRC_URL "https://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/SFMT-src-1.5.1.zip") - set(ARC_HASH "630d1dfa6b690c30472f75fa97ca90ba62f9c13c5add6c264fdac2c1d3a878f4") - # ARC_HASH by TeraTerm Project - set(DOWN_DIR "${CMAKE_CURRENT_LIST_DIR}/download/SFMT") - download_extract( - ${SRC_URL} - ${ARC_HASH} - ${DOWN_DIR} - ${EXT_DIR} - ${DIR_IN_ARC} - ${RENAME_DIR} - ${CHECK_FILE} - ${CHECK_FILE_HASH} - ) - set(SFMT_VERSION_H "${EXT_DIR}/${RENAME_DIR}/SFMT_version_for_teraterm.h") - if(NOT EXISTS ${SFMT_VERSION_H}) - file(WRITE ${SFMT_VERSION_H} - "// created by download.cmake\n" - "#pragma once\n" - "#ifndef SFMT_VERSION_H\n" - "#define SFMT_VERSION_H\n" - "#define SFMT_VERSION \"1.5.1\"\n" - "#endif\n" - ) - endif() -endfunction() - -# zlib -function(download_zlib) - message("zlib") - set(DIR_IN_ARC "zlib-1.3.2") - set(RENAME_DIR "zlib") - set(CHECK_FILE "zlib/ChangeLog") - set(CHECK_FILE_HASH "c6f42df0f27486db922d633e7a70757b56c6cd9f742f21af419d232649efbede") - set(SRC_URL "https://zlib.net/zlib-1.3.2.tar.xz") - set(ARC_HASH "d7a0654783a4da529d1bb793b7ad9c3318020af77667bcae35f95d0e42a792f3") - # ARC_HASH was picked from https://www.zlib.net - set(DOWN_DIR "${CMAKE_CURRENT_LIST_DIR}/download/zlib") - download_extract( - ${SRC_URL} - ${ARC_HASH} - ${DOWN_DIR} - ${EXT_DIR} - ${DIR_IN_ARC} - ${RENAME_DIR} - ${CHECK_FILE} - ${CHECK_FILE_HASH} - ) -endfunction() - -########## -if(NOT DEFINED TARGET) - set(TARGET "all") -endif() -if(NOT DEFINED EXT_DIR) - set(EXT_DIR "${CMAKE_CURRENT_LIST_DIR}") -endif() -#message("TARGET=${TARGET}") -#message("EXT_DIR=${EXT_DIR}") - -if ((${TARGET} STREQUAL "all") OR (${TARGET} STREQUAL "cjson")) - download_cjson() -endif() -if ((${TARGET} STREQUAL "all") OR (${TARGET} STREQUAL "argon2")) - download_argon2() -endif() -if ((${TARGET} STREQUAL "all") OR (${TARGET} STREQUAL "libressl")) - download_libressl() -endif() -if ((${TARGET} STREQUAL "all") OR (${TARGET} STREQUAL "oniguruma")) - download_oniguruma() -endif() -if ((${TARGET} STREQUAL "all") OR (${TARGET} STREQUAL "sfmt")) - download_sfmt() -endif() -if ((${TARGET} STREQUAL "all") OR (${TARGET} STREQUAL "zlib")) - download_zlib() -endif() diff --git a/libs/lib_SFMT.cmake b/libs/lib_SFMT.cmake deleted file mode 100644 index 8a134083b..000000000 --- a/libs/lib_SFMT.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -include(${CMAKE_CURRENT_LIST_DIR}/script_support.cmake) - -if(MSVC) - set(SFMT_ROOT "${CMAKE_CURRENT_LIST_DIR}/SFMT_vs_${CMAKE_VS_PLATFORM_TOOLSET}_${CMAKE_GENERATOR_PLATFORM}") -else() - set(SFMT_ROOT ${CMAKE_CURRENT_LIST_DIR}/SFMT_${TOOLSET}) -endif() - -set(SFMT_INCLUDE_DIRS "${SFMT_ROOT}/include") -set(SFMT_LIBRARY_DIRS "${SFMT_ROOT}/lib") - -if(MINGW) - set(SFMT_LIB ${SFMT_LIBRARY_DIRS}/libsfmt.a) -else() - if(IS_MULTI_CONFIG) - set(SFMT_LIB - optimized ${SFMT_LIBRARY_DIRS}/sfmt.lib - debug ${SFMT_LIBRARY_DIRS}/sfmtd.lib - ) - else() - set(SFMT_LIB ${SFMT_LIBRARY_DIRS}/sfmt.lib) - endif() -endif() diff --git a/libs/lib_libressl.cmake b/libs/lib_libressl.cmake deleted file mode 100644 index a86349059..000000000 --- a/libs/lib_libressl.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -include(${CMAKE_CURRENT_LIST_DIR}/script_support.cmake) - -if(MSVC) - set(LIBRESSL_ROOT "${CMAKE_CURRENT_LIST_DIR}/libressl_vs_${CMAKE_VS_PLATFORM_TOOLSET}_${CMAKE_GENERATOR_PLATFORM}") -else() - set(LIBRESSL_ROOT ${CMAKE_CURRENT_LIST_DIR}/libressl_${TOOLSET}) -endif() - -set(LIBRESSL_INCLUDE_DIRS ${LIBRESSL_ROOT}/include) -if(MINGW) - set(LIBRESSL_LIB - ${LIBRESSL_ROOT}/lib/libcrypto.a - ) -else() - if(IS_MULTI_CONFIG) - set(LIBRESSL_LIB - debug ${LIBRESSL_ROOT}/lib/cryptod.lib - optimized ${LIBRESSL_ROOT}/lib/crypto.lib - ) - else() - set(LIBRESSL_LIB ${LIBRESSL_ROOT}/lib/crypto.lib) - endif() -endif() diff --git a/libs/lib_oniguruma.cmake b/libs/lib_oniguruma.cmake deleted file mode 100644 index 7c004d889..000000000 --- a/libs/lib_oniguruma.cmake +++ /dev/null @@ -1,28 +0,0 @@ - -include(${CMAKE_CURRENT_LIST_DIR}/script_support.cmake) - -if(MSVC) - set(ONIGURUMA_ROOT "${CMAKE_CURRENT_LIST_DIR}/oniguruma_vs_${CMAKE_VS_PLATFORM_TOOLSET}_${CMAKE_GENERATOR_PLATFORM}") -else() - set(ONIGURUMA_ROOT ${CMAKE_CURRENT_LIST_DIR}/oniguruma_${TOOLSET}) -endif() - -#set(ONIGURUMA_DIR "${ONIGURUMA_ROOT}/lib/cmake/oniguruma") -#find_package(ONIGURUMA REQUIRED) -set(ONIGURUMA_INCLUDE_DIRS ${ONIGURUMA_ROOT}/include) -set(ONIGURUMA_LIBRARY_DIRS ${ONIGURUMA_ROOT}/lib) - -if(MINGW) - set(ONIGURUMA_LIB ${ONIGURUMA_LIBRARY_DIRS}/libonig.a) -else() - if(IS_MULTI_CONFIG) - set(ONIGURUMA_LIB - debug ${ONIGURUMA_LIBRARY_DIRS}/onigd.lib - optimized ${ONIGURUMA_LIBRARY_DIRS}/onig.lib - ) - else() - set(ONIGURUMA_LIB - ${ONIGURUMA_LIBRARY_DIRS}/onig.lib - ) - endif() -endif() diff --git a/libs/lib_openssl.cmake b/libs/lib_openssl.cmake deleted file mode 100644 index 80e1350b5..000000000 --- a/libs/lib_openssl.cmake +++ /dev/null @@ -1,27 +0,0 @@ - -include(${CMAKE_CURRENT_LIST_DIR}/script_support.cmake) - -set(OPENSSL_ROOT ${CMAKE_CURRENT_LIST_DIR}/openssl11_${TOOLSET}) -if(CMAKE_SIZEOF_VOID_P EQUAL 8) - set(OPENSSL_ROOT "${OPENSSL_ROOT}_x64") -endif() - -if(MINGW) - set(OPENSSL_INCLUDE_DIRS - ${OPENSSL_ROOT}/include - ) - - set(OPENSSL_LIB - ${OPENSSL_ROOT}/lib/libcrypto.a - ) -else() - set(OPENSSL_INCLUDE_DIRS - "$<$:${OPENSSL_ROOT}_debug/include>" - "$<$:${OPENSSL_ROOT}/include>" - ) - - set(OPENSSL_LIB - debug ${OPENSSL_ROOT}_debug/lib/libcrypto.lib - optimized ${OPENSSL_ROOT}/lib/libcrypto.lib - ) -endif() diff --git a/libs/lib_openssl3.cmake b/libs/lib_openssl3.cmake deleted file mode 100644 index 6e5c5393d..000000000 --- a/libs/lib_openssl3.cmake +++ /dev/null @@ -1,33 +0,0 @@ - -include(${CMAKE_CURRENT_LIST_DIR}/script_support.cmake) - -set(OPENSSL3_ROOT ${CMAKE_CURRENT_LIST_DIR}/openssl3_${TOOLSET}) -if(CMAKE_SIZEOF_VOID_P EQUAL 8) - set(OPENSSL3_ROOT "${OPENSSL3_ROOT}_x64") -endif() - -if(MINGW) - set(OPENSSL3_INCLUDE_DIRS - ${OPENSSL3_ROOT}/include - ) - - if(CMAKE_SIZEOF_VOID_P EQUAL 8) - set(OPENSSL3_LIB - ${OPENSSL3_ROOT}/lib64/libcrypto.a - ) - else() - set(OPENSSL3_LIB - ${OPENSSL3_ROOT}/lib/libcrypto.a - ) - endif() -else() - set(OPENSSL3_INCLUDE_DIRS - "$<$:${OPENSSL3_ROOT}_debug/include>" - "$<$:${OPENSSL3_ROOT}/include>" - ) - - set(OPENSSL3_LIB - debug ${OPENSSL3_ROOT}_debug/lib/libcrypto.lib - optimized ${OPENSSL3_ROOT}/lib/libcrypto.lib - ) -endif() diff --git a/libs/lib_zlib.cmake b/libs/lib_zlib.cmake deleted file mode 100644 index 80a112d18..000000000 --- a/libs/lib_zlib.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -include(${CMAKE_CURRENT_LIST_DIR}/script_support.cmake) - -if(MSVC) - set(ZLIB_ROOT "${CMAKE_CURRENT_LIST_DIR}/zlib_vs_${CMAKE_VS_PLATFORM_TOOLSET}_${CMAKE_GENERATOR_PLATFORM}") -else() - set(ZLIB_ROOT ${CMAKE_CURRENT_LIST_DIR}/zlib_${TOOLSET}) -endif() - -set(ZLIB_INCLUDE_DIRS ${ZLIB_ROOT}/include) -set(ZLIB_LIBRARY_DIRS ${ZLIB_ROOT}/lib) -if(MINGW) - set(ZLIB_LIB ${ZLIB_LIBRARY_DIRS}/libzs.a) -else() - if(IS_MULTI_CONFIG) - set(ZLIB_LIB - debug ${ZLIB_LIBRARY_DIRS}/zsd.lib - optimized ${ZLIB_LIBRARY_DIRS}/zs.lib - ) - else() - set(ZLIB_LIB ${ZLIB_LIBRARY_DIRS}/zs.lib) - endif() -endif() diff --git a/libs/openssl11.cmake b/libs/openssl11.cmake deleted file mode 100644 index 43ee29a6d..000000000 --- a/libs/openssl11.cmake +++ /dev/null @@ -1,387 +0,0 @@ -# for OpenSSL 1.1.1 -# cmake -DCMAKE_GENERATOR="Visual Studio 16 2019" -DARCHITECTURE=Win32 -P openssl11.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 15 2017" -P openssl11.cmake -# cmake -DCMAKE_GENERATOR="Visual Studio 15 2017" -DCMAKE_CONFIGURATION_TYPE=Release -P openssl11.cmake - -option(APPLY_PATCH "patch for windows 95 support" ON) - -#### -if(("${CMAKE_BUILD_TYPE}" STREQUAL "") AND ("${CMAKE_CONFIGURATION_TYPE}" STREQUAL "")) - if("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - # multi-configuration - execute_process( - COMMAND ${CMAKE_COMMAND} - -DCMAKE_GENERATOR=${CMAKE_GENERATOR} - -DCMAKE_CONFIGURATION_TYPE=Release - -DCMAKE_TOOLCHAIN_FILE=${CMAKE_SOURCE_DIR}/VSToolchain.cmake - -DARCHITECTURE=${ARCHITECTURE} - -P openssl11.cmake - ) - execute_process( - COMMAND ${CMAKE_COMMAND} - -DCMAKE_GENERATOR=${CMAKE_GENERATOR} - -DCMAKE_CONFIGURATION_TYPE=Debug - -DCMAKE_TOOLCHAIN_FILE=${CMAKE_SOURCE_DIR}/VSToolchain.cmake - -DARCHITECTURE=${ARCHITECTURE} - -P openssl11.cmake - ) - return() - elseif("$ENV{MSYSTEM}" MATCHES "MINGW32") - # mingw on msys2 - # single-configuration - if("${CMAKE_BUILD_TYPE}" STREQUAL "") - set(CMAKE_BUILD_TYPE Release) - endif() - elseif("${CMAKE_GENERATOR}" MATCHES "Unix Makefiles") - # mingw - # single-configuration - if("${CMAKE_TOOLCHAIN_FILE}" STREQUAL "") - set(CMAKE_TOOLCHAIN_FILE "${CMAKE_SOURCE_DIR}/../mingw.toolchain.cmake") - endif() - if("${CMAKE_BUILD_TYPE}" STREQUAL "") - set(CMAKE_BUILD_TYPE Release) - endif() - elseif("${CMAKE_GENERATOR}" MATCHES "NMake Makefiles") - # VS nmake - # single-configuration - if("${CMAKE_TOOLCHAIN_FILE}" STREQUAL "") - set(CMAKE_TOOLCHAIN_FILE "${CMAKE_SOURCE_DIR}/VSToolchain.cmake") - endif() - if("${CMAKE_BUILD_TYPE}" STREQUAL "") - set(CMAKE_BUILD_TYPE Release) - endif() - else() - # single-configuration - if("${CMAKE_BUILD_TYPE}" STREQUAL "") - set(CMAKE_BUILD_TYPE Release) - endif() - endif() -endif() - -include(script_support.cmake) - -set(SRC_DIR_BASE "openssl-1.1.1k") -set(SRC_ARC "openssl-1.1.1k.tar.gz") -set(SRC_URL "https://www.openssl.org/source/openssl-1.1.1k.tar.gz") -set(SRC_ARC_HASH_SHA256 892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5) - -set(DOWN_DIR "${CMAKE_SOURCE_DIR}/download/openssl") - -set(EXTRACT_DIR "${CMAKE_SOURCE_DIR}/build/openssl11/src_${TOOLSET}") -set(INSTALL_DIR "${CMAKE_SOURCE_DIR}/openssl11_${TOOLSET}") -if(("${CMAKE_GENERATOR}" MATCHES "Win64") OR ("$ENV{MSYSTEM_CHOST}" STREQUAL "x86_64-w64-mingw32") OR ("${ARCHITECTURE}" MATCHES "x64") OR ("${CMAKE_COMMAND}" MATCHES "mingw64")) - set(EXTRACT_DIR "${EXTRACT_DIR}_x64") - set(INSTALL_DIR "${INSTALL_DIR}_x64") -endif() -if((${CMAKE_GENERATOR} MATCHES "Visual Studio") AND ("${CMAKE_CONFIGURATION_TYPE}" STREQUAL "Debug")) - set(EXTRACT_DIR "${EXTRACT_DIR}_debug") - set(INSTALL_DIR "${INSTALL_DIR}_debug") -endif() -set(SRC_DIR "${EXTRACT_DIR}/${SRC_DIR_BASE}") - -######################################## - -file(DOWNLOAD - ${SRC_URL} - ${DOWN_DIR}/${SRC_ARC} - EXPECTED_HASH SHA256=${SRC_ARC_HASH_SHA256} - SHOW_PROGRESS - ) - -######################################## - -if(CMAKE_HOST_SYSTEM_NAME MATCHES "Linux") - find_program( - PERL perl - ) -elseif("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - # Active/Strawberry Perl - find_program( - PERL perl.exe - HINTS ${CMAKE_CURRENT_LIST_DIR}/../buildtools/perl/perl/bin - HINTS c:/Perl64/bin - HINTS c:/Perl/bin - HINTS c:/Strawberry/perl/bin - ) - if("${PERL}" MATCHES "[Cc]ygwin") - message(FATAL_ERROR "cygwin perl! ${PERL}") - endif() -else() - # MinGW - find_program( - PERL perl - HINTS C:/msys64/usr/bin - ) -endif() - -if(${PERL} STREQUAL "PERL-NOTFOUND") - message(FATAL_ERROR "perl not found") -endif() - -######################################## - -if(NOT EXISTS ${SRC_DIR}/README) - - execute_process( - COMMAND ${CMAKE_COMMAND} -E make_directory ${EXTRACT_DIR} - ) - - execute_process( - COMMAND ${CMAKE_COMMAND} -E tar "xvf" ${DOWN_DIR}/${SRC_ARC} - WORKING_DIRECTORY ${EXTRACT_DIR} - ) - - file(COPY - ${SRC_DIR}/LICENSE - DESTINATION ${CMAKE_CURRENT_LIST_DIR}/doc_help - ) - file(RENAME - ${CMAKE_CURRENT_LIST_DIR}/doc_help/LICENSE - ${CMAKE_CURRENT_LIST_DIR}/doc_help/OpenSSL-LICENSE.txt) - - if(APPLY_PATCH) - find_program( - PATCH patch - HINTS "${CMAKE_CURRENT_LIST_DIR}/openssl_patch" - HINTS "${CMAKE_CURRENT_LIST_DIR}/../buildtools/perl/c/bin" - HINTS "C:/Program Files/Git/usr/bin" - HINTS c:/cygwin64/usr/bin - HINTS c:/cygwin/usr/bin - HINTS c:/msys64/usr/bin - ) - message(PATCH=${PATCH}) - set(PATCH_OPT --binary --backup -p1) - if(NOT PATCH) - message(FATAL_ERROR "patch not found") - endif() - execute_process( - COMMAND ${PATCH} ${PATCH_OPT} - INPUT_FILE ${CMAKE_CURRENT_SOURCE_DIR}/openssl_patch/vs2005.patch - WORKING_DIRECTORY ${EXTRACT_DIR}/${SRC_DIR_BASE} - ) - execute_process( - COMMAND ${PATCH} ${PATCH_OPT} - INPUT_FILE ${CMAKE_CURRENT_SOURCE_DIR}/openssl_patch/ws2_32_dll_patch.txt - WORKING_DIRECTORY ${EXTRACT_DIR}/${SRC_DIR_BASE} - ) - execute_process( - COMMAND ${PATCH} ${PATCH_OPT} - INPUT_FILE ${CMAKE_CURRENT_SOURCE_DIR}/openssl_patch/atomic_api.txt - WORKING_DIRECTORY ${EXTRACT_DIR}/${SRC_DIR_BASE} - ) - execute_process( - COMMAND ${PATCH} ${PATCH_OPT} - INPUT_FILE ${CMAKE_CURRENT_SOURCE_DIR}/openssl_patch/CryptAcquireContextW2.txt - WORKING_DIRECTORY ${EXTRACT_DIR}/${SRC_DIR_BASE} - ) - execute_process( - COMMAND ${PATCH} ${PATCH_OPT} - INPUT_FILE ${CMAKE_CURRENT_SOURCE_DIR}/openssl_patch/atomic_api_win95.txt - WORKING_DIRECTORY ${EXTRACT_DIR}/${SRC_DIR_BASE} - ) - execute_process( - COMMAND ${PATCH} ${PATCH_OPT} - INPUT_FILE ${CMAKE_CURRENT_SOURCE_DIR}/openssl_patch/CryptAcquireContextW_win95.txt - WORKING_DIRECTORY ${EXTRACT_DIR}/${SRC_DIR_BASE} - ) - endif(APPLY_PATCH) - -endif() - -######################################## - -if((${CMAKE_GENERATOR} MATCHES "Visual Studio") OR - (${CMAKE_GENERATOR} MATCHES "NMake Makefiles")) - ######################################## VS - if(${CMAKE_GENERATOR} MATCHES "NMake Makefiles") - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 17 2022") - find_program( - VCVARS32 vcvarsall.bat - HINTS "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Auxiliary/Build" - HINTS "C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Auxiliary/Build" - HINTS "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 16 2019") - find_program( - VCVARS32 vcvarsall.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Auxiliary/Build" - HINTS "C:/Program Files (x86)/Microsoft Visual Studio/2019/Professional/VC/Auxiliary/Build" - HINTS "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 15 2017") - find_program( - VCVARS32 vcvarsall.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Auxiliary/Build" - HINTS "C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/VC/Auxiliary/Build" - HINTS "C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Auxiliary/Build" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 14 2015") - find_program( - VCVARS32 vcvars32.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 12 2013") - find_program( - VCVARS32 vcvars32.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 11 2012") - find_program( - VCVARS32 vcvars32.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio 11.0/VC/bin" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 10 2010") - find_program( - VCVARS32 vcvars32.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 9 2008") - find_program( - VCVARS32 vcvars32.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio 9.0/VC/bin" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 8 2005") - find_program( - VCVARS32 vcvars32.bat - HINTS "C:/Program Files (x86)/Microsoft Visual Studio 8/VC/bin" - ) - else() - message(FATAL_ERROR "CMAKE_GENERATOR ${CMAKE_GENERATOR} not supported") - endif() - if(VCVARS32-NOTFOUND OR (${VCVARS32} STREQUAL "VCVARS32-NOTFOUND")) - message(FATAL_ERROR "vcvars32.bat not found") - endif() - - if((${CMAKE_GENERATOR} MATCHES "Win64") OR ("${ARCHITECTURE}" MATCHES "x64")) - set(CONFIG_TARGET "VC-WIN64A") - else() - set(CONFIG_TARGET "VC-WIN32") - endif() - if(("${CMAKE_BUILD_TYPE}" STREQUAL "Release") OR ("${CMAKE_CONFIGURATION_TYPE}" STREQUAL "Release")) - else() - set(CONFIG_TARGET "debug-${CONFIG_TARGET}") - endif() - - file(WRITE "${SRC_DIR}/build_cmake.bat" - "cd /d %~dp0\n" - "setlocal\n" - ) - file(TO_NATIVE_PATH ${PERL} PERL_N) - file(TO_NATIVE_PATH ${INSTALL_DIR} INSTALL_DIR_N) - file(TO_NATIVE_PATH ${VCVARS32} VCVARS32_N) - string(REGEX REPLACE [[^(.*)\\.*$]] [[\1]] PERL_N_PATH ${PERL_N}) - file(APPEND "${SRC_DIR}/build_cmake.bat" - "set PATH=${PERL_N_PATH};c:\\windows;c:\\windows\\system32\n" - ) - if(${CMAKE_GENERATOR} MATCHES "Visual Studio 8 2005") - ## Visual Studio 2005 特別処理 - # include,libパスの設定 - file(APPEND "${SRC_DIR}/build_cmake.bat" - "set SDK=C:\\Program Files\\Microsoft SDKs\\Windows\\v7.1\n" - "set INCLUDE=%SDK%\\Include;%INCLUDE%\n" - "set LIB=%SDK%\\lib;%LIB%\n" - ) - endif() - if((${CMAKE_GENERATOR} MATCHES "Visual Studio 16 2019") OR ${CMAKE_GENERATOR} MATCHES "Visual Studio 17 2022") - if("${ARCHITECTURE}" MATCHES "x64") - file(APPEND "${SRC_DIR}/build_cmake.bat" - "call \"${VCVARS32_N}\" amd64\n" - ) - else() - file(APPEND "${SRC_DIR}/build_cmake.bat" - "call \"${VCVARS32_N}\" x86\n" - ) - endif() - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 15 2017 Win64") - file(APPEND "${SRC_DIR}/build_cmake.bat" - "call \"${VCVARS32_N}\" amd64\n" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 15 2017") - file(APPEND "${SRC_DIR}/build_cmake.bat" - "call \"${VCVARS32_N}\" x86\n" - ) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio") - file(APPEND "${SRC_DIR}/build_cmake.bat" - "call \"${VCVARS32_N}\"\n" - ) - endif() - file(APPEND "${SRC_DIR}/build_cmake.bat" - "perl Configure no-asm no-async no-shared no-capieng no-dso no-engine ${CONFIG_TARGET} -D_WIN32_WINNT=0x0501 --prefix=${INSTALL_DIR_N} --openssldir=${INSTALL_DIR_N}\\SSL\n" - "nmake -f makefile install\n" - ) - set(BUILD_CMAKE_BAT "${SRC_DIR}/build_cmake.bat") - file(TO_NATIVE_PATH ${BUILD_CMAKE_BAT} BUILD_CMAKE_BAT_N) - execute_process( - COMMAND cmd /c ${BUILD_CMAKE_BAT_N} - WORKING_DIRECTORY ${SRC_DIR} - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") - endif() -else() - ######################################## MinGW - execute_process( - COMMAND "uname" -s - OUTPUT_VARIABLE ov) - string(REGEX MATCH "[A-Za-z0-9]+" UNAME_S ${ov}) - if("${UNAME_S}" STREQUAL "CYGWIN") - find_program( - MAKE make.exe - HINTS c:/cygwin/usr/bin - HINTS c:/cygwin64/usr/bin - ) - elseif(("${UNAME_S}" STREQUAL "MINGW32") OR ("${UNAME_S}" STREQUAL "MINGW64") OR ("${CMAKE_COMMAND}" MATCHES "mingw")) - find_program( - MAKE make - ) - elseif(CMAKE_HOST_SYSTEM_NAME MATCHES "Linux") - find_program( - MAKE make - ) - else() - message(FATAL_ERROR "unsported") - endif() - set(ENV{PATH} "/usr/bin;/bin") - if(("${UNAME_S}" STREQUAL "MINGW32") OR ("${CMAKE_COMMAND}" MATCHES "mingw32")) - set(CMAKE_C_COMPILER "cc") - set(PATH "/mingw32/bin:/usr/local/bin:/usr/bin:/bin") - set(CONFIG_NAME "mingw") - elseif(("${UNAME_S}" STREQUAL "MINGW64") OR ("${CMAKE_COMMAND}" MATCHES "mingw64")) - set(CMAKE_C_COMPILER "cc") - set(PATH "/mingw64/bin:/usr/local/bin:/usr/bin:/bin") - set(CONFIG_NAME "mingw64") - else() - include(${CMAKE_SOURCE_DIR}/../mingw.toolchain.cmake) - set(ENV{CC} ${CMAKE_C_COMPILER}) - set(ENV{AR} "i686-w64-mingw32-ar") - set(ENV{RANLIB} "i686-w64-mingw32-ranlib") - set(ENV{RC} "i686-w64-mingw32-windres") - set(PATH "/usr/bin:/bin") - set(CONFIG_NAME "mingw") - endif() - execute_process( - COMMAND ${CMAKE_COMMAND} -E env "PATH=/usr/bin:/bin" ${PERL} ./Configure no-asm no-async no-shared no-capieng -no-dso -no-engine ${CONFIG_NAME} -D_WIN32_WINNT=0x0501 --prefix=${INSTALL_DIR} --openssldir=${INSTALL_DIR}/SSL - WORKING_DIRECTORY ${SRC_DIR} - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake configure fail ${rv}") - endif() - execute_process( - COMMAND ${CMAKE_COMMAND} -E env "PATH=${PATH}" ${MAKE} CC=${CMAKE_C_COMPILER} - WORKING_DIRECTORY ${SRC_DIR} - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake build fail ${rv}") - endif() - execute_process( - COMMAND ${CMAKE_COMMAND} -E env "PATH=${PATH}" ${MAKE} install - WORKING_DIRECTORY ${SRC_DIR} - RESULT_VARIABLE rv - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "cmake install fail ${rv}") - endif() -endif() diff --git a/libs/script_support.cmake b/libs/script_support.cmake deleted file mode 100644 index ecd96f587..000000000 --- a/libs/script_support.cmake +++ /dev/null @@ -1,55 +0,0 @@ -# TOOLSET ツールセット名 -if(${CMAKE_GENERATOR} MATCHES "Visual Studio") - if(${CMAKE_GENERATOR} MATCHES "Visual Studio 18 2026") - set(MSVC_TOOLSET_VERSION 145) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 17 2022") - set(MSVC_TOOLSET_VERSION 143) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 16 2019") - set(MSVC_TOOLSET_VERSION 142) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 15 2017") - # ARM64 available (Win32,x64,ARM,ARM64) - set(MSVC_TOOLSET_VERSION 141) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 14 2015") - set(MSVC_TOOLSET_VERSION 140) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 12 2013") - # ARCHITECTURE is available 2013+ (Win32,x64,ARM) - set(MSVC_TOOLSET_VERSION 120) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 11 2012") - set(MSVC_TOOLSET_VERSION 110) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 10 2010") - set(MSVC_TOOLSET_VERSION 100) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 9 2008") - set(MSVC_TOOLSET_VERSION 90) - elseif(${CMAKE_GENERATOR} MATCHES "Visual Studio 8 2005") - set(MSVC_TOOLSET_VERSION 80) - else() - set(MSVC_TOOLSET_VERSION "Unknown") - message(FATAL_ERROR "unknown Visual Studio ${CMAKE_GENERATOR}") - endif() - set(TOOLSET "vs_v${MSVC_TOOLSET_VERSION}_${ARCHITECTURE}") -elseif((${CMAKE_GENERATOR} MATCHES "Unix Makefiles") OR - (${CMAKE_GENERATOR} MATCHES "MSYS Makefiles") OR - (${CMAKE_GENERATOR} MATCHES "MinGW Makefiles") OR - (${CMAKE_GENERATOR} MATCHES "Ninja")) - if(DEFINED ARCHITECTURE) - # for script - if(${ARCHITECTURE} STREQUAL "x86_64") - set(TOOLSET "mingw_x86_64") - elseif(${ARCHITECTURE} STREQUAL "i686") - set(TOOLSET "mingw_i686") - else() - message(FATAL_ERROR "check ARCHITECTURE ${ARCHITECTURE}") - endif() - else() - # for generate/build - if(CMAKE_SIZEOF_VOID_P EQUAL 8) - set(TOOLSET "mingw_x86_64") - else() - set(TOOLSET "mingw_i686") - endif() - endif() -elseif(${CMAKE_GENERATOR} MATCHES "NMake Makefiles") - set(TOOLSET "VS_NMake") -else() - message(FATAL_ERROR "unknown GENERATOR ${CMAKE_GENERATOR}") -endif() diff --git a/mingw.toolchain.cmake b/mingw.toolchain.cmake deleted file mode 100644 index deaba4bd6..000000000 --- a/mingw.toolchain.cmake +++ /dev/null @@ -1,71 +0,0 @@ -# how to build: -# mkdir build; cd build -# cmake .. -G "Unix Makefiles" -DARCHITECTURE=i686 -DCMAKE_TOOLCHAIN_FILE=../mingw.toolchain.cmake -# cmake .. -G "Unix Makefiles" -DARCHITECTURE=x86_64 -DCMAKE_TOOLCHAIN_FILE=../mingw.toolchain.cmake -# cmake .. -G Ninja -DARCHITECTURE=x86_64 -DCMAKE_TOOLCHAIN_FILE=../mingw.toolchain.cmake -cmake_policy(SET CMP0053 NEW) - -# target -set(CMAKE_SYSTEM_NAME Windows) - -if(NOT DEFINED ARCHITECTURE) - set(ARCHITECTURE "i686") -# set(ARCHITECTURE "x86_64") -endif() -message(STATUS "Toolchain: ARCHITECTURE=${ARCHITECTURE}") - -# option -option(USE_CLANG "use clang compiler" OFF) - -if(${ARCHITECTURE} STREQUAL "i686") - set(CMAKE_SYSTEM_PROCESSOR i686) - set(PREFIX "i686-w64-mingw32-") - set(CMAKE_FIND_ROOT_PATH /usr/i686-w64-mingw32) -elseif(${ARCHITECTURE} STREQUAL "x86_64") - set(CMAKE_SYSTEM_PROCESSOR x86_64) - set(ARCHITECTURE "x86_64") - set(PREFIX "x86_64-w64-mingw32-") - set(CMAKE_FIND_ROOT_PATH /usr/x86_64-w64-mingw32) -else() - message(FATAL_ERROR "ARCHITECTURE=${ARCHITECTURE}") -endif() -message(STATUS "Toolchain: PREFIX=${PREFIX}") - -set(THREAD_MODEL "-win32") -#set(THREAD_MODEL "-posix") -if(MSYS OR (${CMAKE_COMMAND} MATCHES "msys2") OR (${CMAKE_COMMAND} MATCHES "mingw") OR (${CMAKE_COMMAND} MATCHES "clang64")) - # msys2はposix版のみ - unset(THREAD_MODEL) -elseif(CYGWIN OR (${CMAKE_HOST_SYSTEM_NAME} MATCHES "CYGWIN")) - # Cygwinはposix版のみ - unset(THREAD_MODEL) -elseif(APPLE OR (${CMAKE_HOST_SYSTEM_NAME} MATCHES "Darwin")) - # macOS (Homebrew) は suffix なし - unset(THREAD_MODEL) -endif() - -if(NOT USE_CLANG) - set(CMAKE_C_COMPILER ${PREFIX}gcc${THREAD_MODEL}) - set(CMAKE_CXX_COMPILER ${PREFIX}g++${THREAD_MODEL}) - set(CMAKE_RC_COMPILER ${PREFIX}windres) - set(CMAKE_AR ${PREFIX}gcc-ar${THREAD_MODEL}) - set(CMAKE_RANLIB ${PREFIX}gcc-ranlib${THREAD_MODEL}) - set(CMAKE_NM ${PREFIX}gcc-nm${THREAD_MODEL}) - set(CMAKE_OBJCOPY ${PREFIX}objcopy) -else() - set(CMAKE_C_COMPILER ${PREFIX}clang${THREAD_MODEL}) - set(CMAKE_CXX_COMPILER ${PREFIX}clang++${THREAD_MODEL}) - set(CMAKE_RC_COMPILER ${PREFIX}windres) - set(CMAKE_AR ${PREFIX}ar) - set(CMAKE_RANLIB ${PREFIX}ranlib) -endif() -if(MSYS OR (${CMAKE_COMMAND} MATCHES "msys2") OR (${CMAKE_COMMAND} MATCHES "mingw") OR (${CMAKE_COMMAND} MATCHES "clang64")) - set(CMAKE_RC_COMPILER windres) -endif() - -set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) -set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) -set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) -set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) - -set(CMAKE_TOOLCHAIN_FILE ${CMAKE_TOOLCHAIN_FILE} CACHE PATH "toolchain file") diff --git a/teraterm/CMakeLists.txt b/teraterm/CMakeLists.txt deleted file mode 100644 index 9338e7913..000000000 --- a/teraterm/CMakeLists.txt +++ /dev/null @@ -1,46 +0,0 @@ - -add_subdirectory(ttpcmn) -set_target_properties( - ttpcmn - PROPERTIES FOLDER teraterm) - -add_subdirectory(ttpmacro) -set_target_properties( - ttpmacro - PROPERTIES FOLDER teraterm) - -add_subdirectory(teraterm) -set_target_properties( - teraterm - PROPERTIES FOLDER teraterm) - -add_subdirectory(keycode) -set_target_properties( - keycode - PROPERTIES FOLDER teraterm) -set_target_properties( - keycodeW - PROPERTIES FOLDER teraterm) - -add_subdirectory(common) -set_target_properties( - common_static - PROPERTIES FOLDER teraterm) - -if(SUPPORT_OLD_WINDOWS) - if(CMAKE_SIZEOF_VOID_P EQUAL 4) - add_subdirectory(layer_for_unicode) - set_target_properties( - layer_for_unicode - PROPERTIES FOLDER teraterm) - else() - message(FATAL_ERROR "64bit binary can not support 9x") - endif() - - if(MINGW) - add_subdirectory(libmingw) - set_target_properties( - mingw_msvcrt - PROPERTIES FOLDER teraterm) - endif(MINGW) -endif() diff --git a/teraterm/common/CMakeLists.txt b/teraterm/common/CMakeLists.txt deleted file mode 100644 index 159ea5e8b..000000000 --- a/teraterm/common/CMakeLists.txt +++ /dev/null @@ -1,123 +0,0 @@ -project("common_static") - -add_library( - ${PROJECT_NAME} - STATIC - ../susie_plugin/libsusieplugin.cpp - ../susie_plugin/libsusieplugin.h - ../teraterm/unicode.cpp - ../teraterm/unicode.h - asprintf.cpp - asprintf.h - bitmap.cpp - bitmap.h - codeconv.cpp - codeconv.h - codeconv_mb.cpp - codeconv_mb.h - compat_dwrite.h - compat_win.cpp - compat_win.h - comportinfo.cpp - comportinfo.h - ddelib.cpp - ddelib.h - directx.cpp - directx.h - dlglib.c - dlglib.h - dlglib_cpp.cpp - dlglib_tmpl.cpp - dllutil.cpp - dllutil.h - fileread.cpp - fileread.h - getcontent.cpp - getcontent.h - history_store.cpp - history_store.h - i18n.c - i18n.h - i18n_static.c - inifile_com.cpp - inifile_com.h - makeoutputstring.cpp - makeoutputstring.h - resize_helper.cpp - resize_helper.h - tipwin.cpp - tipwin.h - tipwin2.cpp - tipwin2.h - tmfc.cpp - tmfc.h - tmfc_frame.cpp - tmfc_propdlg.cpp - tmfc_propdlg.h - tmfc_property.cpp - ttcommdlg.cpp - ttcommdlg.h - ttdebug.cpp - ttdebug.h - ttdup.cpp - ttdup.h - ttgdiplus.cpp - ttgdiplus.h - ttknownfolders.c - ttknownfolders.h - ttlib.c - ttlib.h - ttlib_charset.cpp - ttlib_charset.h - ttlib_static.c - ttlib_static_cpp.cpp - ttlib_static_dir.cpp - ttlib_static_dir.h - ttlib_types.cpp - ttlib_types.h - tttext.cpp - tttext.h - tttypes.h - tttypes_charset.h - tttypes_key.h - tttypes_termid.cpp - tttypes_termid.h - win32helper.cpp - win32helper.h -) - -if(MSVC) - target_compile_options(${PROJECT_NAME} PRIVATE /W4) -endif(MSVC) - -target_include_directories( - ${PROJECT_NAME} - PUBLIC - ${CMAKE_CURRENT_BINARY_DIR} # for svnversion.h - . - ../teraterm - ../susie_plugin -) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PUBLIC - layer_for_unicode - ) -endif() - -target_link_libraries( - ${PROJECT_NAME} - PUBLIC - setupapi - imagehlp -) - -if(MSVC) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - gdiplus.lib - ) -endif() diff --git a/teraterm/common/ico/ico_scripts/icon_combine.cmake b/teraterm/common/ico/ico_scripts/icon_combine.cmake deleted file mode 100644 index 5a8e3238a..000000000 --- a/teraterm/common/ico/ico_scripts/icon_combine.cmake +++ /dev/null @@ -1,95 +0,0 @@ -# cmake -DCOPY_BMP_ICO=1 -P icon_combine.cmake - -option(COPY_ICO "copy ico file to source folder" 0) -option(COPY_BMP_ICO "copy BMP ico file to source folder" 0) - -#set(ICOTOOL "icotool") -find_program( - ICOTOOL icotool - HINTS ${CMAKE_CURRENT_LIST_DIR}/../../../../buildtools/cygwin64 - HINTS c:/cygwin64/bin -) -message("icotool=${ICOTOOL}") -message("COPY_ICO=${COPY_ICO}") -message("COPY_BMP_ICO=${COPY_BMP_ICO}") - -# icoファイルを作成する -# -# basename icoファイルの拡張子をとったファイル名(フォルダ名) -# PNG_ICO 0/1=pngを含まない/含んだicoファイル -# 256x256のpngファイルは png のまま icoファイルにする -# ICO icoファイル名 (basename フォルダ内に作成する) -# EXIST_256 0/1 = 256x256のpngファイルが存在しなかった/した -# -function(ico_combine_raw basename PNG_ICO ICO EXIST_256) - set(DEST ${basename}) - set(${EXIST_256} 0 PARENT_SCOPE) - - file(GLOB imgs - RELATIVE "${CMAKE_CURRENT_LIST_DIR}/${basename}" - "${basename}/*.png") - - unset(ARGS) - foreach(f IN LISTS imgs) - if(${f} MATCHES "256x256") - set(${EXIST_256} 1 PARENT_SCOPE) - if(${PNG_ICO}) - list(APPEND ARGS "-r") - endif() - endif() - list(APPEND ARGS ${f}) - endforeach() - - #message("${ICOTOOL} -c ${ARGS}") - execute_process( - COMMAND ${ICOTOOL} -c ${ARGS} - OUTPUT_FILE ${ICO} - WORKING_DIRECTORY ${DEST} - ) - - return(${PNG}) -endfunction() - -# icoファイルを作成, 必要なら上書きする -# -# basename icoファイルの拡張子をとったファイル名 -# rel_path icoファイルのあるフォルダ -# -function(ico_combine basename rel_path) - set(ICO "${basename}.ico") - ico_combine_raw(${basename} 1 ${ICO} EXIST_256) - if(${COPY_ICO}) - file(COPY_FILE ${basename}/${ICO} ${rel_path}/${ICO}) - endif() - - set(ICO "${basename}_bmp.ico") - ico_combine_raw(${basename} 0 ${ICO} EXIST_256) - if(${COPY_BMP_ICO} AND ${EXIST_256}) - message("copy ${basename}/${ICO} ${rel_path}/${ICO}") - file(COPY_FILE ${basename}/${ICO} ${rel_path}/${ICO}) - endif() -endfunction() - -ico_combine("teraterm" "../..") -ico_combine("teraterm_3d" "../..") -ico_combine("teraterm_classic" "../..") -ico_combine("teraterm_flat" "../..") -ico_combine("tterm16" "../..") -ico_combine("tek" "../..") -ico_combine("tek16" "../..") -ico_combine("cygterm" "../../../../cygwin/cygterm") -ico_combine("vt" "../..") -ico_combine("vt_3d" "../..") -ico_combine("vt_classic" "../..") -ico_combine("vt_flat" "../..") -ico_combine("vt16" "../..") -ico_combine("ttmacr16" "../../../ttpmacro") -ico_combine("ttmacro" "../../../ttpmacro") -ico_combine("ttmacrof" "../../../ttpmacro") -ico_combine("ttmacro_3d" "../../../ttpmacro") -ico_combine("ttmacro_flat" "../../../ttpmacro") -ico_combine("ttsecure" "../../../../ttssh2/ttxssh") -ico_combine("ttsecure_classic" "../../../../ttssh2/ttxssh") -ico_combine("ttsecure_flat" "../../../../ttssh2/ttxssh") -ico_combine("ttsecure_green" "../../../../ttssh2/ttxssh") -ico_combine("ttsecure_yellow" "../../../../ttssh2/ttxssh") diff --git a/teraterm/common/ico/ico_scripts/icon_extract.cmake b/teraterm/common/ico/ico_scripts/icon_extract.cmake deleted file mode 100644 index 723cb5634..000000000 --- a/teraterm/common/ico/ico_scripts/icon_extract.cmake +++ /dev/null @@ -1,55 +0,0 @@ -# cmake -P icon_extract.cmake - -#set(ICOTOOL "icotool") -find_program( - ICOTOOL icotool - HINTS ${CMAKE_CURRENT_LIST_DIR}/../../../../buildtools/cygwin64 - HINTS c:/cygwin64/bin -) -message("icotool=${ICOTOOL}") - -# icoファイルを分解する -# -# basename icoファイルの拡張子をとったファイル名 -# rel_path このファイルのあるフォルダからの相対パス -# -function(ico_extract basename rel_path) - set(DEST ${basename}) - set(ICO "${rel_path}/${basename}.ico") - if(NOT EXISTS ${ICO}) - message(FATAL_ERROR "ico not found ${ICO}") - endif() - if(EXISTS ${DEST}) - file(REMOVE_RECURSE ${DEST}) - endif() - file(MAKE_DIRECTORY ${DEST}) - - execute_process( - COMMAND ${ICOTOOL} -x "../${ICO}" - WORKING_DIRECTORY ${DEST} - ) -endfunction() - -ico_extract("teraterm" "../..") -ico_extract("teraterm_3d" "../..") -ico_extract("teraterm_classic" "../..") -ico_extract("teraterm_flat" "../..") -ico_extract("tterm16" "../..") -ico_extract("tek" "../..") -ico_extract("tek16" "../..") -ico_extract("cygterm" "../../../../cygwin/cygterm") -ico_extract("vt" "../..") -ico_extract("vt_3d" "../..") -ico_extract("vt_classic" "../..") -ico_extract("vt_flat" "../..") -ico_extract("vt16" "../..") -ico_extract("ttmacr16" "../../../ttpmacro") -ico_extract("ttmacro" "../../../ttpmacro") -ico_extract("ttmacrof" "../../../ttpmacro") -ico_extract("ttmacro_3d" "../../../ttpmacro") -ico_extract("ttmacro_flat" "../../../ttpmacro") -ico_extract("ttsecure" "../../../../ttssh2/ttxssh") -ico_extract("ttsecure_classic" "../../../../ttssh2/ttxssh") -ico_extract("ttsecure_flat" "../../../../ttssh2/ttxssh") -ico_extract("ttsecure_green" "../../../../ttssh2/ttxssh") -ico_extract("ttsecure_yellow" "../../../../ttssh2/ttxssh") diff --git a/teraterm/keycode/CMakeLists.txt b/teraterm/keycode/CMakeLists.txt deleted file mode 100644 index 43e1eff94..000000000 --- a/teraterm/keycode/CMakeLists.txt +++ /dev/null @@ -1,106 +0,0 @@ -project("keycode") - -add_executable( - ${PROJECT_NAME} WIN32 - keycode.c - keycode.ico - keycode-version.rc - keycode.rc - kc_res.h - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - ttpcmn -) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -if(MSVC) - target_compile_options( - ${PROJECT_NAME} - PRIVATE - /W4 - ) -endif() - -install( - TARGETS ${PROJECT_NAME} - DESTINATION . - ) - -### unicode version - -project("keycodeW") - -add_executable( - ${PROJECT_NAME} WIN32 - keycode.c - keycode.ico - keycode-version.rc - keycode.rc - kc_res.h - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - ttpcmn -) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_compile_definitions( - ${PROJECT_NAME} - PRIVATE - UNICODE _UNICODE - ) - -if(MSVC) - target_compile_options( - ${PROJECT_NAME} - PRIVATE - /W4 - ) -endif() diff --git a/teraterm/layer_for_unicode/CMakeLists.txt b/teraterm/layer_for_unicode/CMakeLists.txt deleted file mode 100644 index 0ad82aac5..000000000 --- a/teraterm/layer_for_unicode/CMakeLists.txt +++ /dev/null @@ -1,114 +0,0 @@ -cmake_minimum_required(VERSION 3.11) - -project("layer_for_unicode") - -add_library( - ${PROJECT_NAME} - STATIC - ../common/codeconv.cpp - ../common/codeconv.h - ../common/compat_win.cpp - ../common/compat_win.h - ../common/dllutil.cpp - ../common/dllutil.h - init_ptr.cpp - layer_for_unicode.cpp - layer_for_unicode.h - layer_for_unicode_comctl32.cpp - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../common - ) - -if(NOT EXISTS "list_asm.cmake") - execute_process( - COMMAND ${PERL} generate.pl - RESULT_VARIABLE rv - WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} - ) - if(NOT rv STREQUAL "0") - message(FATAL_ERROR "execute error ${PERL}") - endif() -endif() - -if(${CMAKE_VERSION} VERSION_LESS "3.12.0") - - set(OBJ_DIR ".") - include("list_obj.cmake") - - target_sources( - ${PROJECT_NAME} - PRIVATE - ${SRC} - ) - -else() - # VS2010+ - - include("list_asm.cmake") - - if(CMAKE_HOST_SYSTEM_NAME MATCHES "Windows") - set(BUILDTOOLS_NASM ${CMAKE_CURRENT_LIST_DIR}/../../buildtools/nasm/nasm.exe) - if(EXISTS ${BUILDTOOLS_NASM}) - set(CMAKE_ASM_NASM_COMPILER ${BUILDTOOLS_NASM}) - endif() - endif() - set(CMAKE_ASM_NASM_OBJECT_FORMAT win32) - set(CMAKE_ASM_NASM_FLAGS_DEBUG "-g -Fcv8") - - enable_language(ASM_NASM) - - target_sources( - ${PROJECT_NAME} - PRIVATE - ${SRC} - ) - - source_group( - "assember" - REGULAR_EXPRESSION - "asm") -endif() - -if(MSVC AND (MSVC_VERSION GREATER_EQUAL 1900)) - # Visual Studio 2015+ (1900=VS2015) - target_link_libraries( - ${PROJECT_NAME} - PUBLIC - common_static - $<$:libucrt.lib libvcruntime.lib libcmt.lib libcpmt.lib oldnames.lib> - $<$:libucrtd.lib libvcruntimed.lib libcmtd.lib libcpmtd.lib oldnames.lib> - ) -elseif(MSVC) - target_link_libraries( - ${PROJECT_NAME} - PUBLIC - $<$:libcmt.lib libcpmt.lib> - $<$:libcmtd.lib libcpmtd.lib> - ) -elseif(MINGW) - target_link_libraries( - ${PROJECT_NAME} - PUBLIC - common_static - ) -else() -endif() - -target_link_libraries( - ${PROJECT_NAME} - PUBLIC - oleaut32 - advapi32 - ole32 - user32 - kernel32 - gdi32 - comdlg32 - comctl32 - shell32 - uuid - ) diff --git a/teraterm/libmingw/CMakeLists.txt b/teraterm/libmingw/CMakeLists.txt deleted file mode 100644 index 2c4ab96aa..000000000 --- a/teraterm/libmingw/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -set(PACKAGE_NAME "mingw_msvcrt") - -project(mingw) - -add_library( - mingw_msvcrt - STATIC - msvcrt_wrapper.c -) - -# for dll tls -add_library( - mingw_dll_tls - STATIC - tlssup.c -) diff --git a/teraterm/libmingw/test/CMakeLists.txt b/teraterm/libmingw/test/CMakeLists.txt deleted file mode 100644 index 07fe644d3..000000000 --- a/teraterm/libmingw/test/CMakeLists.txt +++ /dev/null @@ -1,82 +0,0 @@ -cmake_minimum_required(VERSION 3.11) - -set(PACKAGE_NAME "msvcrt") - -project(${PACKAGE_NAME}) - -if(MSVC) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4") - set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /ZI") - set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /ZI") - set(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS_DEBUG} /SAFESEH:NO") -elseif(MINGW) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D__USE_MINGW_ANSI_STDIO=0") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D__USE_MINGW_ANSI_STDIO=0") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_C_WARNING_FLAGS} -g -static -ffunction-sections -fdata-sections ${C_ONLY_FLAGS}") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_C_CXX_WARNING_FLAGS} -g -static -ffunction-sections -fdata-sections") - if (CMAKE_C_COMPILER_ID STREQUAL "GNU") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -static-libgcc -static-libstdc++") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libgcc -static-libstdc++") - endif() - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static-libgcc -g") -endif() - -add_executable( - ${PACKAGE_NAME} - main.c - outputdebugprintf.cpp - is.c - ../../common/asprintf.cpp - ../../common/compat_win.cpp - ../../common/layer_for_unicode.cpp - ../../common/codeconv.cpp - ../../common/dllutil.cpp - ) - -if(MINGW) - target_sources( - ${PACKAGE_NAME} - PRIVATE - ../msvcrt_wrapper.c - ) -endif() - -target_include_directories( - ${PACKAGE_NAME} - PRIVATE - . - ../../common - ) - -if(MINGW) - target_compile_options( - ${PACKAGE_NAME} - PUBLIC -Wall - ) -endif() - -target_link_libraries( - ${PACKAGE_NAME} - PRIVATE - gdi32 - ) - - -#target_link_libraries( -# msvcr70 -# PRIVATE -# mingw_msvcrt -# ) - -if(false) -add_executable( - crt_snprintf_s - crt_snprintf_s.cpp - ) - -target_compile_options( - crt_snprintf_s - PUBLIC -Wall - ) -endif() diff --git a/teraterm/susie_plugin/CMakeLists.txt b/teraterm/susie_plugin/CMakeLists.txt deleted file mode 100644 index e07f1975b..000000000 --- a/teraterm/susie_plugin/CMakeLists.txt +++ /dev/null @@ -1,83 +0,0 @@ -cmake_minimum_required(VERSION 3.11) -project(susie_plugin) - -if(MSVC) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4") - set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT") - set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /MT") - set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /ZI /MTd") - set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /ZI /MTd") - set(CMAKE_EXE_LINKER_FLAGS_DEBUG "${CMAKE_EXE_LINKER_FLAGS} /SAFESEH:NO") -endif() -if(NOT DEFINED EXTLIB) - set(EXTLIB "extlib") -endif() - -if(CMAKE_SIZEOF_VOID_P EQUAL 8) - set(PLUGIN_EXT "sph") -else() - set(PLUGIN_EXT "spi") -endif() - -add_executable( - spi_tester - tester/spi_tester.cpp - libsusieplugin.cpp - libsusieplugin.h - ) - -target_include_directories( - spi_tester - PRIVATE - . - ) - -add_library( - ttspijpeg SHARED - plugin/spi_jpeg.cpp - plugin/spi_common.cpp - plugin/spi_common.h - plugin/susie.def - ) - -set_target_properties( - ttspijpeg - PROPERTIES SUFFIX ".${PLUGIN_EXT}" - ) - -target_include_directories( - ttspijpeg - PRIVATE - ${EXTLIB}/libjpeg-turbo/include -) - -target_link_libraries( - ttspijpeg - ${CMAKE_CURRENT_SOURCE_DIR}/${EXTLIB}/libjpeg-turbo/lib/jpeg-static.lib - ) - -add_library( - ttspipng SHARED - plugin/spi_png.cpp - plugin/spi_common.cpp - plugin/spi_common.h - plugin/susie.def - ) - -target_include_directories( - ttspipng - PRIVATE - ${EXTLIB}/libpng/include -) - -set_target_properties( - ttspipng - PROPERTIES SUFFIX ".${PLUGIN_EXT}" - ) - -target_link_libraries( - ttspipng - ${CMAKE_CURRENT_SOURCE_DIR}/${EXTLIB}/libpng/lib/libpng16_static.lib - ${CMAKE_CURRENT_SOURCE_DIR}/${EXTLIB}/zlib/lib/zlibstatic.lib - ) diff --git a/teraterm/susie_plugin/extlib/extlib.cmake b/teraterm/susie_plugin/extlib/extlib.cmake deleted file mode 100644 index ac5fc4ee9..000000000 --- a/teraterm/susie_plugin/extlib/extlib.cmake +++ /dev/null @@ -1,79 +0,0 @@ -set(CONFIG "Release") -#set(CONFIG "debug") -#set(GENERATE_OPTION "-G" "Visual Studio 8 2005") -#set(INSTALL_PREFIX_ADD "vs2005_win32/") - -# zlib - -file(DOWNLOAD - https://zlib.net/zlib-1.2.11.tar.xz - ./download/zlib-1.2.11.tar.xz - SHOW_PROGRESS - EXPECTED_HASH SHA256=4ff941449631ace0d4d203e3483be9dbc9da454084111f97ea0a2114e19bf066 - ) - -file(MAKE_DIRECTORY "build/zlib/src") -execute_process( - COMMAND ${CMAKE_COMMAND} -E tar -xf ${CMAKE_CURRENT_SOURCE_DIR}/download/zlib-1.2.11.tar.xz - WORKING_DIRECTORY "build/zlib/src") -execute_process( - COMMAND ${CMAKE_COMMAND} -E copy patched_file/zlib-1.2.11/CMakeLists.txt build/zlib/src/zlib-1.2.11) -file(MAKE_DIRECTORY "build/zlib/build") -execute_process( - COMMAND ${CMAKE_COMMAND} ../src/zlib-1.2.11 -DASM686=off -DAMD64=off - -DCMAKE_INSTALL_PREFIX=${CMAKE_CURRENT_SOURCE_DIR}/${INSTALL_PREFIX_ADD}zlib ${GENERATE_OPTION} - WORKING_DIRECTORY "build/zlib/build") -execute_process( - COMMAND ${CMAKE_COMMAND} --build . --config ${CONFIG} --target install - WORKING_DIRECTORY "build/zlib/build") - -# libpng - -file(DOWNLOAD - https://download.sourceforge.net/libpng/libpng-1.6.37.tar.xz - ./download/libpng-1.6.37.tar.xz - SHOW_PROGRESS - EXPECTED_HASH SHA256=505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca - ) - -file(MAKE_DIRECTORY "build/libpng/src") -execute_process( - COMMAND ${CMAKE_COMMAND} -E tar -xf ${CMAKE_CURRENT_SOURCE_DIR}/download/libpng-1.6.37.tar.xz - WORKING_DIRECTORY "build/libpng/src") -execute_process( - COMMAND ${CMAKE_COMMAND} -E copy patched_file/libpng-1.6.37/CMakeLists.txt build/libpng/src/libpng-1.6.37) - -file(MAKE_DIRECTORY "build/libpng/build") -execute_process( - COMMAND ${CMAKE_COMMAND} ../src/libpng-1.6.37 -DPNG_SHARED=off -DPNG_STATIC=on -DPNG_TESTS=off - -DPNG_DEBUG=off -DPNGARG=off -DPNG_BUILD_ZLIB=off -DZLIB_INCLUDE_DIR=${CMAKE_CURRENT_SOURCE_DIR}/zlib/include -DZLIB_LIBRARY=${CMAKE_CURRENT_SOURCE_DIR}/zlib/lib ${GENERATE_OPTION} - -DCMAKE_INSTALL_PREFIX=${CMAKE_CURRENT_SOURCE_DIR}/${INSTALL_PREFIX_ADD}libpng - WORKING_DIRECTORY "build/libpng/build") -execute_process( - COMMAND ${CMAKE_COMMAND} --build . --config ${CONFIG} --target install - WORKING_DIRECTORY "build/libpng/build") - -# libjpeg-turbo - -file(DOWNLOAD - https://github.com/libjpeg-turbo/libjpeg-turbo/archive/2.0.4.tar.gz - ./download/libjpeg-turbo-2.0.4.tar.gz - SHOW_PROGRESS - EXPECTED_HASH SHA256=7777c3c19762940cff42b3ba4d7cd5c52d1671b39a79532050c85efb99079064 - ) - -file(MAKE_DIRECTORY "build/libjpeg/src") -execute_process( - COMMAND ${CMAKE_COMMAND} -E tar -xf ${CMAKE_CURRENT_SOURCE_DIR}/download/libjpeg-turbo-2.0.4.tar.gz - WORKING_DIRECTORY "build/libjpeg/src") - -file(MAKE_DIRECTORY "build/libjpeg/build") -execute_process( - COMMAND ${CMAKE_COMMAND} ../src/libjpeg-turbo-2.0.4 -DENABLE_SHARED=OFF -DWITH_SIMD=OFF - -DCMAKE_INSTALL_PREFIX=${CMAKE_CURRENT_SOURCE_DIR}/${INSTALL_PREFIX_ADD}libjpeg-turbo ${GENERATE_OPTION} - WORKING_DIRECTORY "build/libjpeg/build") - -execute_process( - COMMAND ${CMAKE_COMMAND} --build . --config ${CONFIG} --target install - WORKING_DIRECTORY "build/libjpeg/build") - diff --git a/teraterm/susie_plugin/extlib/patched_file/libpng-1.6.37/CMakeLists.txt b/teraterm/susie_plugin/extlib/patched_file/libpng-1.6.37/CMakeLists.txt deleted file mode 100644 index 8ec210452..000000000 --- a/teraterm/susie_plugin/extlib/patched_file/libpng-1.6.37/CMakeLists.txt +++ /dev/null @@ -1,936 +0,0 @@ -# CMakeLists.txt - -# Copyright (C) 2018 Cosmin Truta -# Copyright (C) 2007,2009-2018 Glenn Randers-Pehrson -# Written by Christian Ehrlicher, 2007 -# Revised by Roger Lowman, 2009-2010 -# Revised by Clifford Yapp, 2011-2012,2017 -# Revised by Roger Leigh, 2016 -# Revised by Andreas Franek, 2016 -# Revised by Sam Serrels, 2017 -# Revised by Vadim Barkov, 2017 -# Revised by Vicky Pfau, 2018 -# Revised by Cameron Cawley, 2018 -# Revised by Cosmin Truta, 2018 -# Revised by Kyle Bentley, 2018 - -# This code is released under the libpng license. -# For conditions of distribution and use, see the disclaimer -# and license in png.h - -cmake_minimum_required(VERSION 3.1) -cmake_policy(VERSION 3.1) - -project(libpng C ASM) -enable_testing() - -set(PNGLIB_MAJOR 1) -set(PNGLIB_MINOR 6) -set(PNGLIB_RELEASE 37) -set(PNGLIB_NAME libpng${PNGLIB_MAJOR}${PNGLIB_MINOR}) -set(PNGLIB_VERSION ${PNGLIB_MAJOR}.${PNGLIB_MINOR}.${PNGLIB_RELEASE}) - -include(GNUInstallDirs) - -# needed packages - -# Allow users to specify location of Zlib. -# Useful if zlib is being built alongside this as a sub-project. -option(PNG_BUILD_ZLIB "Custom zlib Location, else find_package is used" OFF) - -if(NOT PNG_BUILD_ZLIB) - find_package(ZLIB REQUIRED) - include_directories(${ZLIB_INCLUDE_DIR}) -endif() - -if(UNIX AND NOT APPLE AND NOT BEOS AND NOT HAIKU) - find_library(M_LIBRARY m) -else() - # libm is not needed and/or not available - set(M_LIBRARY "") -endif() - -# COMMAND LINE OPTIONS -option(PNG_SHARED "Build shared lib" ON) -option(PNG_STATIC "Build static lib" ON) -option(PNG_TESTS "Build libpng tests" ON) - -# Many more configuration options could be added here -option(PNG_FRAMEWORK "Build OS X framework" OFF) -option(PNG_DEBUG "Build with debug output" OFF) -option(PNG_HARDWARE_OPTIMIZATIONS "Enable hardware optimizations" ON) - -set(PNG_PREFIX "" CACHE STRING "Prefix to add to the API function names") -set(DFA_XTRA "" CACHE FILEPATH "File containing extra configuration settings") - -if(PNG_HARDWARE_OPTIMIZATIONS) - -# set definitions and sources for arm -if(CMAKE_SYSTEM_PROCESSOR MATCHES "^arm" OR - CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64") - set(PNG_ARM_NEON_POSSIBLE_VALUES check on off) - set(PNG_ARM_NEON "check" CACHE STRING "Enable ARM NEON optimizations: - check: (default) use internal checking code; - off: disable the optimizations; - on: turn on unconditionally.") - set_property(CACHE PNG_ARM_NEON PROPERTY STRINGS - ${PNG_ARM_NEON_POSSIBLE_VALUES}) - list(FIND PNG_ARM_NEON_POSSIBLE_VALUES ${PNG_ARM_NEON} index) - if(index EQUAL -1) - message(FATAL_ERROR - "PNG_ARM_NEON must be one of [${PNG_ARM_NEON_POSSIBLE_VALUES}]") - elseif(NOT ${PNG_ARM_NEON} STREQUAL "off") - set(libpng_arm_sources - arm/arm_init.c - arm/filter_neon.S - arm/filter_neon_intrinsics.c - arm/palette_neon_intrinsics.c) - - if(${PNG_ARM_NEON} STREQUAL "on") - add_definitions(-DPNG_ARM_NEON_OPT=2) - elseif(${PNG_ARM_NEON} STREQUAL "check") - add_definitions(-DPNG_ARM_NEON_CHECK_SUPPORTED) - endif() - else() - add_definitions(-DPNG_ARM_NEON_OPT=0) - endif() -endif() - -# set definitions and sources for powerpc -if(CMAKE_SYSTEM_PROCESSOR MATCHES "^powerpc*" OR - CMAKE_SYSTEM_PROCESSOR MATCHES "^ppc64*") - set(PNG_POWERPC_VSX_POSSIBLE_VALUES on off) - set(PNG_POWERPC_VSX "on" CACHE STRING "Enable POWERPC VSX optimizations: - off: disable the optimizations.") - set_property(CACHE PNG_POWERPC_VSX PROPERTY STRINGS - ${PNG_POWERPC_VSX_POSSIBLE_VALUES}) - list(FIND PNG_POWERPC_VSX_POSSIBLE_VALUES ${PNG_POWERPC_VSX} index) - if(index EQUAL -1) - message(FATAL_ERROR - "PNG_POWERPC_VSX must be one of [${PNG_POWERPC_VSX_POSSIBLE_VALUES}]") - elseif(NOT ${PNG_POWERPC_VSX} STREQUAL "off") - set(libpng_powerpc_sources - powerpc/powerpc_init.c - powerpc/filter_vsx_intrinsics.c) - if(${PNG_POWERPC_VSX} STREQUAL "on") - add_definitions(-DPNG_POWERPC_VSX_OPT=2) - endif() - else() - add_definitions(-DPNG_POWERPC_VSX_OPT=0) - endif() -endif() - -# set definitions and sources for intel -if(CMAKE_SYSTEM_PROCESSOR MATCHES "^i?86" OR - CMAKE_SYSTEM_PROCESSOR MATCHES "^x86_64*") - set(PNG_INTEL_SSE_POSSIBLE_VALUES on off) - set(PNG_INTEL_SSE "on" CACHE STRING "Enable INTEL_SSE optimizations: - off: disable the optimizations") - set_property(CACHE PNG_INTEL_SSE PROPERTY STRINGS - ${PNG_INTEL_SSE_POSSIBLE_VALUES}) - list(FIND PNG_INTEL_SSE_POSSIBLE_VALUES ${PNG_INTEL_SSE} index) - if(index EQUAL -1) - message(FATAL_ERROR - "PNG_INTEL_SSE must be one of [${PNG_INTEL_SSE_POSSIBLE_VALUES}]") - elseif(NOT ${PNG_INTEL_SSE} STREQUAL "off") - set(libpng_intel_sources - intel/intel_init.c - intel/filter_sse2_intrinsics.c) - if(${PNG_INTEL_SSE} STREQUAL "on") - add_definitions(-DPNG_INTEL_SSE_OPT=1) - endif() - else() - add_definitions(-DPNG_INTEL_SSE_OPT=0) - endif() -endif() - -# set definitions and sources for MIPS -if(CMAKE_SYSTEM_PROCESSOR MATCHES "mipsel*" OR - CMAKE_SYSTEM_PROCESSOR MATCHES "mips64el*") - set(PNG_MIPS_MSA_POSSIBLE_VALUES on off) - set(PNG_MIPS_MSA "on" CACHE STRING "Enable MIPS_MSA optimizations: - off: disable the optimizations") - set_property(CACHE PNG_MIPS_MSA PROPERTY STRINGS - ${PNG_MIPS_MSA_POSSIBLE_VALUES}) - list(FIND PNG_MIPS_MSA_POSSIBLE_VALUES ${PNG_MIPS_MSA} index) - if(index EQUAL -1) - message(FATAL_ERROR - "PNG_MIPS_MSA must be one of [${PNG_MIPS_MSA_POSSIBLE_VALUES}]") - elseif(NOT ${PNG_MIPS_MSA} STREQUAL "off") - set(libpng_mips_sources - mips/mips_init.c - mips/filter_msa_intrinsics.c) - if(${PNG_MIPS_MSA} STREQUAL "on") - add_definitions(-DPNG_MIPS_MSA_OPT=2) - endif() - else() - add_definitions(-DPNG_MIPS_MSA_OPT=0) - endif() -endif() - -else(PNG_HARDWARE_OPTIMIZATIONS) - -# set definitions and sources for arm -if(CMAKE_SYSTEM_PROCESSOR MATCHES "^arm" OR - CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64") - add_definitions(-DPNG_ARM_NEON_OPT=0) -endif() - -# set definitions and sources for powerpc -if(CMAKE_SYSTEM_PROCESSOR MATCHES "^powerpc*" OR - CMAKE_SYSTEM_PROCESSOR MATCHES "^ppc64*") - add_definitions(-DPNG_POWERPC_VSX_OPT=0) -endif() - -# set definitions and sources for intel -if(CMAKE_SYSTEM_PROCESSOR MATCHES "^i?86" OR - CMAKE_SYSTEM_PROCESSOR MATCHES "^x86_64*") - add_definitions(-DPNG_INTEL_SSE_OPT=0) -endif() - -# set definitions and sources for MIPS -if(CMAKE_SYSTEM_PROCESSOR MATCHES "mipsel*" OR - CMAKE_SYSTEM_PROCESSOR MATCHES "mips64el*") - add_definitions(-DPNG_MIPS_MSA_OPT=0) -endif() - -endif(PNG_HARDWARE_OPTIMIZATIONS) - -# SET LIBNAME -set(PNG_LIB_NAME png${PNGLIB_MAJOR}${PNGLIB_MINOR}) - -# to distinguish between debug and release lib -set(CMAKE_DEBUG_POSTFIX "d") - -include(CheckCSourceCompiles) -option(ld-version-script "Enable linker version script" ON) -if(ld-version-script AND NOT APPLE) - # Check if LD supports linker scripts. - file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/conftest.map" "VERS_1 { - global: sym; - local: *; -}; - -VERS_2 { - global: sym2; - main; -} VERS_1; -") - set(CMAKE_REQUIRED_FLAGS_SAVE ${CMAKE_REQUIRED_FLAGS}) - set(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS} "-Wl,--version-script='${CMAKE_CURRENT_BINARY_DIR}/conftest.map'") - check_c_source_compiles("void sym(void) {} -void sym2(void) {} -int main(void) {return 0;} -" HAVE_LD_VERSION_SCRIPT) - if(NOT HAVE_LD_VERSION_SCRIPT) - set(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS_SAVE} "-Wl,-M -Wl,${CMAKE_CURRENT_BINARY_DIR}/conftest.map") - check_c_source_compiles("void sym(void) {} -void sym2(void) {} -int main(void) {return 0;} -" HAVE_SOLARIS_LD_VERSION_SCRIPT) - endif() - set(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS_SAVE}) - file(REMOVE "${CMAKE_CURRENT_BINARY_DIR}/conftest.map") -endif() - -# Find symbol prefix. Likely obsolete and unnecessary with recent -# toolchains (it's not done in many other projects). -function(symbol_prefix) - set(SYMBOL_PREFIX) - - execute_process(COMMAND "${CMAKE_C_COMPILER}" "-E" "-" - INPUT_FILE /dev/null - OUTPUT_VARIABLE OUT - RESULT_VARIABLE STATUS) - - if(CPP_FAIL) - message(WARNING "Failed to run the C preprocessor") - endif() - - string(REPLACE "\n" ";" OUT "${OUT}") - foreach(line ${OUT}) - string(REGEX MATCH "^PREFIX=" found_match "${line}") - if(found_match) - string(REGEX REPLACE "^PREFIX=(.*\)" "\\1" prefix "${line}") - string(REGEX MATCH "__USER_LABEL_PREFIX__" found_match "${prefix}") - if(found_match) - string(REGEX REPLACE "(.*)__USER_LABEL_PREFIX__(.*)" "\\1\\2" prefix "${prefix}") - endif() - set(SYMBOL_PREFIX "${prefix}") - endif() - endforeach() - - message(STATUS "Symbol prefix: ${SYMBOL_PREFIX}") - set(SYMBOL_PREFIX "${SYMBOL_PREFIX}" PARENT_SCOPE) -endfunction() - -if(UNIX) - symbol_prefix() -endif() - -find_program(AWK NAMES gawk awk) - -include_directories(${CMAKE_CURRENT_BINARY_DIR}) - -if(NOT AWK OR ANDROID) - # No awk available to generate sources; use pre-built pnglibconf.h - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/pnglibconf.h.prebuilt - ${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h) - add_custom_target(genfiles) # Dummy -else() - include(CMakeParseArguments) - # Generate .chk from .out with awk - # generate_chk(INPUT inputfile OUTPUT outputfile [DEPENDS dep1 [dep2...]]) - function(generate_chk) - set(options) - set(oneValueArgs INPUT OUTPUT) - set(multiValueArgs DEPENDS) - cmake_parse_arguments(_GC "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) - if(NOT _GC_INPUT) - message(FATAL_ERROR "generate_chk: Missing INPUT argument") - endif() - if(NOT _GC_OUTPUT) - message(FATAL_ERROR "generate_chk: Missing OUTPUT argument") - endif() - - add_custom_command(OUTPUT "${_GC_OUTPUT}" - COMMAND "${CMAKE_COMMAND}" - "-DINPUT=${_GC_INPUT}" - "-DOUTPUT=${_GC_OUTPUT}" - -P "${CMAKE_CURRENT_BINARY_DIR}/scripts/genchk.cmake" - DEPENDS "${_GC_INPUT}" ${_GC_DEPENDS} - WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}") - endfunction() - - # Generate .out from .c with awk - # generate_out(INPUT inputfile OUTPUT outputfile [DEPENDS dep1 [dep2...]]) - function(generate_out) - set(options) - set(oneValueArgs INPUT OUTPUT) - set(multiValueArgs DEPENDS) - cmake_parse_arguments(_GO "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) - if(NOT _GO_INPUT) - message(FATAL_ERROR "generate_out: Missing INPUT argument") - endif() - if(NOT _GO_OUTPUT) - message(FATAL_ERROR "generate_out: Missing OUTPUT argument") - endif() - - add_custom_command(OUTPUT "${_GO_OUTPUT}" - COMMAND "${CMAKE_COMMAND}" - "-DINPUT=${_GO_INPUT}" - "-DOUTPUT=${_GO_OUTPUT}" - -P "${CMAKE_CURRENT_BINARY_DIR}/scripts/genout.cmake" - DEPENDS "${_GO_INPUT}" ${_GO_DEPENDS} - WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}") - endfunction() - - # Generate specific source file with awk - # generate_source(OUTPUT outputfile [DEPENDS dep1 [dep2...]]) - function(generate_source) - set(options) - set(oneValueArgs OUTPUT) - set(multiValueArgs DEPENDS) - cmake_parse_arguments(_GSO "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) - if(NOT _GSO_OUTPUT) - message(FATAL_ERROR "generate_source: Missing OUTPUT argument") - endif() - - add_custom_command(OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${_GSO_OUTPUT}" - COMMAND "${CMAKE_COMMAND}" - "-DOUTPUT=${_GSO_OUTPUT}" - -P "${CMAKE_CURRENT_BINARY_DIR}/scripts/gensrc.cmake" - DEPENDS ${_GSO_DEPENDS} - WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}") - endfunction() - - # Copy file - function(generate_copy source destination) - add_custom_command(OUTPUT "${destination}" - COMMAND "${CMAKE_COMMAND}" -E remove "${destination}" - COMMAND "${CMAKE_COMMAND}" -E copy "${source}" - "${destination}" - DEPENDS "${source}") - endfunction() - - # Generate scripts/pnglibconf.h - generate_source(OUTPUT "scripts/pnglibconf.c" - DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/scripts/pnglibconf.dfa" - "${CMAKE_CURRENT_SOURCE_DIR}/scripts/options.awk" - "${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h") - - # Generate pnglibconf.c - generate_source(OUTPUT "pnglibconf.c" - DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/scripts/pnglibconf.dfa" - "${CMAKE_CURRENT_SOURCE_DIR}/scripts/options.awk" - "${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h") - - if(PNG_PREFIX) - set(PNGLIBCONF_H_EXTRA_DEPENDS - "${CMAKE_CURRENT_BINARY_DIR}/scripts/prefix.out" - "${CMAKE_CURRENT_SOURCE_DIR}/scripts/macro.lst") - set(PNGPREFIX_H_EXTRA_DEPENDS - "${CMAKE_CURRENT_BINARY_DIR}/scripts/intprefix.out") - endif() - - generate_out(INPUT "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.c" - OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out") - - # Generate pnglibconf.h - generate_source(OUTPUT "pnglibconf.h" - DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out" - ${PNGLIBCONF_H_EXTRA_DEPENDS}) - - generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/intprefix.c" - OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/intprefix.out" - DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h") - - generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/prefix.c" - OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/prefix.out" - DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/png.h" - "${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h" - "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out") - - # Generate pngprefix.h - generate_source(OUTPUT "pngprefix.h" - DEPENDS ${PNGPREFIX_H_EXTRA_DEPENDS}) - - generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/sym.c" - OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/sym.out" - DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h") - - generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/symbols.c" - OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.out" - DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/png.h" - "${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h" - "${CMAKE_CURRENT_SOURCE_DIR}/scripts/pnglibconf.h.prebuilt") - - generate_out(INPUT "${CMAKE_CURRENT_SOURCE_DIR}/scripts/vers.c" - OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/vers.out" - DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/png.h" - "${CMAKE_CURRENT_SOURCE_DIR}/pngconf.h" - "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h") - - generate_chk(INPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.out" - OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.chk" - DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/scripts/checksym.awk" - "${CMAKE_CURRENT_SOURCE_DIR}/scripts/symbols.def") - - add_custom_target(symbol-check DEPENDS - "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.chk") - - generate_copy("${CMAKE_CURRENT_BINARY_DIR}/scripts/sym.out" - "${CMAKE_CURRENT_BINARY_DIR}/libpng.sym") - generate_copy("${CMAKE_CURRENT_BINARY_DIR}/scripts/vers.out" - "${CMAKE_CURRENT_BINARY_DIR}/libpng.vers") - - add_custom_target(genvers DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/libpng.vers") - add_custom_target(gensym DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/libpng.sym") - - add_custom_target("genprebuilt" - COMMAND "${CMAKE_COMMAND}" - "-DOUTPUT=scripts/pnglibconf.h.prebuilt" - -P "${CMAKE_CURRENT_BINARY_DIR}/scripts/gensrc.cmake" - WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}") - - # A single target handles generation of all generated files. If - # they are depended upon separately by multiple targets, this - # confuses parallel make (it would require a separate top-level - # target for each file to track the dependencies properly). - add_custom_target(genfiles DEPENDS - "${CMAKE_CURRENT_BINARY_DIR}/libpng.sym" - "${CMAKE_CURRENT_BINARY_DIR}/libpng.vers" - "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.c" - "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h" - "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.out" - "${CMAKE_CURRENT_BINARY_DIR}/pngprefix.h" - "${CMAKE_CURRENT_BINARY_DIR}/scripts/intprefix.out" - "${CMAKE_CURRENT_BINARY_DIR}/scripts/pnglibconf.c" - "${CMAKE_CURRENT_BINARY_DIR}/scripts/prefix.out" - "${CMAKE_CURRENT_BINARY_DIR}/scripts/sym.out" - "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.chk" - "${CMAKE_CURRENT_BINARY_DIR}/scripts/symbols.out" - "${CMAKE_CURRENT_BINARY_DIR}/scripts/vers.out") -endif(NOT AWK OR ANDROID) - -# OUR SOURCES -set(libpng_public_hdrs - png.h - pngconf.h - "${CMAKE_CURRENT_BINARY_DIR}/pnglibconf.h" -) -set(libpng_private_hdrs - pngpriv.h - pngdebug.h - pnginfo.h - pngstruct.h -) -if(AWK AND NOT ANDROID) - list(APPEND libpng_private_hdrs "${CMAKE_CURRENT_BINARY_DIR}/pngprefix.h") -endif() -set(libpng_sources - ${libpng_public_hdrs} - ${libpng_private_hdrs} - png.c - pngerror.c - pngget.c - pngmem.c - pngpread.c - pngread.c - pngrio.c - pngrtran.c - pngrutil.c - pngset.c - pngtrans.c - pngwio.c - pngwrite.c - pngwtran.c - pngwutil.c - ${libpng_arm_sources} - ${libpng_intel_sources} - ${libpng_mips_sources} - ${libpng_powerpc_sources} -) -set(pngtest_sources - pngtest.c -) -set(pngvalid_sources - contrib/libtests/pngvalid.c -) -set(pngstest_sources - contrib/libtests/pngstest.c -) -set(pngunknown_sources - contrib/libtests/pngunknown.c -) -set(pngimage_sources - contrib/libtests/pngimage.c -) -set(pngfix_sources - contrib/tools/pngfix.c -) -set(png_fix_itxt_sources - contrib/tools/png-fix-itxt.c -) - -if(MSVC) - add_definitions(-D_CRT_SECURE_NO_DEPRECATE) -endif() - -if(PNG_DEBUG) - add_definitions(-DPNG_DEBUG) -endif() - -# NOW BUILD OUR TARGET -include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${ZLIB_INCLUDE_DIR}) - -unset(PNG_LIB_TARGETS) - -if(PNG_SHARED) - add_library(png SHARED ${libpng_sources}) - set(PNG_LIB_TARGETS png) - set_target_properties(png PROPERTIES OUTPUT_NAME ${PNG_LIB_NAME}) - add_dependencies(png genfiles) - if(MSVC) - # msvc does not append 'lib' - do it here to have consistent name - set_target_properties(png PROPERTIES PREFIX "lib") - set_target_properties(png PROPERTIES IMPORT_PREFIX "lib") - endif() - target_link_libraries(png ${ZLIB_LIBRARY} ${M_LIBRARY}) - - if(UNIX AND AWK) - if(HAVE_LD_VERSION_SCRIPT) - set_target_properties(png PROPERTIES LINK_FLAGS - "-Wl,--version-script='${CMAKE_CURRENT_BINARY_DIR}/libpng.vers'") - elseif(HAVE_SOLARIS_LD_VERSION_SCRIPT) - set_target_properties(png PROPERTIES LINK_FLAGS - "-Wl,-M -Wl,'${CMAKE_CURRENT_BINARY_DIR}/libpng.vers'") - endif() - endif() -endif() - -if(PNG_STATIC) - # does not work without changing name - set(PNG_LIB_NAME_STATIC png_static) - add_library(png_static STATIC ${libpng_sources}) - add_dependencies(png_static genfiles) - # MSVC doesn't use a different file extension for shared vs. static - # libs. We are able to change OUTPUT_NAME to remove the _static - # for all other platforms. - if(NOT MSVC) - set_target_properties(png_static PROPERTIES - OUTPUT_NAME "${PNG_LIB_NAME}" - CLEAN_DIRECT_OUTPUT 1) - else() - set_target_properties(png_static PROPERTIES - OUTPUT_NAME "${PNG_LIB_NAME}_static" - CLEAN_DIRECT_OUTPUT 1) - endif() - list(APPEND PNG_LIB_TARGETS png_static) - if(MSVC) - # msvc does not append 'lib' - do it here to have consistent name - set_target_properties(png_static PROPERTIES PREFIX "lib") - endif() - target_link_libraries(png_static ${ZLIB_LIBRARY} ${M_LIBRARY}) - if(MSVC) - if(NOT WITH_CRT_DLL) - target_compile_options(png_static PRIVATE -MT$<$:d>) - endif() - endif() -endif() - -if(PNG_FRAMEWORK) - set(PNG_LIB_NAME_FRAMEWORK png_framework) - add_library(png_framework SHARED ${libpng_sources}) - add_dependencies(png_framework genfiles) - list(APPEND PNG_LIB_TARGETS png_framework) - set_target_properties(png_framework PROPERTIES - FRAMEWORK TRUE - FRAMEWORK_VERSION ${PNGLIB_VERSION} - MACOSX_FRAMEWORK_SHORT_VERSION_STRING ${PNGLIB_MAJOR}.${PNGLIB_MINOR} - MACOSX_FRAMEWORK_BUNDLE_VERSION ${PNGLIB_VERSION} - MACOSX_FRAMEWORK_IDENTIFIER org.libpng.libpng - XCODE_ATTRIBUTE_INSTALL_PATH "@rpath" - PUBLIC_HEADER "${libpng_public_hdrs}" - OUTPUT_NAME png) - target_link_libraries(png_framework ${ZLIB_LIBRARY} ${M_LIBRARY}) -endif() - -if(NOT PNG_LIB_TARGETS) - message(SEND_ERROR - "No library variant selected to build. " - "Please enable at least one of the following options: " - "PNG_STATIC, PNG_SHARED, PNG_FRAMEWORK") -endif() - -if(PNG_SHARED AND WIN32) - set_target_properties(png PROPERTIES DEFINE_SYMBOL PNG_BUILD_DLL) -endif() - -function(png_add_test) - set(options) - set(oneValueArgs NAME COMMAND) - set(multiValueArgs OPTIONS FILES) - cmake_parse_arguments(_PAT "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) - - if(NOT _PAT_NAME) - message(FATAL_ERROR "png_add_test: Missing NAME argument") - endif() - if(NOT _PAT_COMMAND) - message(FATAL_ERROR "png_add_test: Missing COMMAND argument") - endif() - - set(TEST_OPTIONS "${_PAT_OPTIONS}") - set(TEST_FILES "${_PAT_FILES}") - - configure_file("${CMAKE_CURRENT_SOURCE_DIR}/scripts/test.cmake.in" - "${CMAKE_CURRENT_BINARY_DIR}/tests/${_PAT_NAME}.cmake" @ONLY) - add_test(NAME "${_PAT_NAME}" - COMMAND "${CMAKE_COMMAND}" - "-DLIBPNG=$" - "-DTEST_COMMAND=$" - -P "${CMAKE_CURRENT_BINARY_DIR}/tests/${_PAT_NAME}.cmake") -endfunction() - -if(PNG_TESTS AND PNG_SHARED) - # Find test PNG files by globbing, but sort lists to ensure - # consistency between different filesystems. - file(GLOB PNGSUITE_PNGS "${CMAKE_CURRENT_SOURCE_DIR}/contrib/pngsuite/*.png") - list(SORT PNGSUITE_PNGS) - file(GLOB TEST_PNGS "${CMAKE_CURRENT_SOURCE_DIR}/contrib/testpngs/*.png") - list(SORT TEST_PNGS) - - set(PNGTEST_PNG "${CMAKE_CURRENT_SOURCE_DIR}/pngtest.png") - - add_executable(pngtest ${pngtest_sources}) - target_link_libraries(pngtest png) - - png_add_test(NAME pngtest COMMAND pngtest FILES "${PNGTEST_PNG}") - - add_executable(pngvalid ${pngvalid_sources}) - target_link_libraries(pngvalid png) - - png_add_test(NAME pngvalid-gamma-16-to-8 - COMMAND pngvalid OPTIONS --gamma-16-to-8) - png_add_test(NAME pngvalid-gamma-alpha-mode - COMMAND pngvalid OPTIONS --gamma-alpha-mode) - png_add_test(NAME pngvalid-gamma-background - COMMAND pngvalid OPTIONS --gamma-background) - png_add_test(NAME pngvalid-gamma-expand16-alpha-mode - COMMAND pngvalid OPTIONS --gamma-alpha-mode --expand16) - png_add_test(NAME pngvalid-gamma-expand16-background - COMMAND pngvalid OPTIONS --gamma-background --expand16) - png_add_test(NAME pngvalid-gamma-expand16-transform - COMMAND pngvalid OPTIONS --gamma-transform --expand16) - png_add_test(NAME pngvalid-gamma-sbit - COMMAND pngvalid OPTIONS --gamma-sbit) - png_add_test(NAME pngvalid-gamma-threshold - COMMAND pngvalid OPTIONS --gamma-threshold) - png_add_test(NAME pngvalid-gamma-transform - COMMAND pngvalid OPTIONS --gamma-transform) - png_add_test(NAME pngvalid-progressive-interlace-standard - COMMAND pngvalid OPTIONS --standard --progressive-read --interlace) - png_add_test(NAME pngvalid-progressive-size - COMMAND pngvalid OPTIONS --size --progressive-read) - png_add_test(NAME pngvalid-progressive-standard - COMMAND pngvalid OPTIONS --standard --progressive-read) - png_add_test(NAME pngvalid-standard - COMMAND pngvalid OPTIONS --standard) - png_add_test(NAME pngvalid-transform - COMMAND pngvalid OPTIONS --transform) - - add_executable(pngstest ${pngstest_sources}) - target_link_libraries(pngstest png) - - foreach(gamma_type 1.8 linear none sRGB) - foreach(alpha_type none alpha) - set(PNGSTEST_FILES) - foreach(test_png ${TEST_PNGS}) - string(REGEX MATCH ".*-linear[-.].*" TEST_PNG_LINEAR "${test_png}") - string(REGEX MATCH ".*-sRGB[-.].*" TEST_PNG_SRGB "${test_png}") - string(REGEX MATCH ".*-1.8[-.].*" TEST_PNG_G18 "${test_png}") - string(REGEX MATCH ".*-alpha-.*" TEST_PNG_ALPHA "${test_png}") - - set(TEST_PNG_VALID TRUE) - - if(TEST_PNG_ALPHA) - if(NOT "${alpha_type}" STREQUAL "alpha") - set(TEST_PNG_VALID FALSE) - endif() - else() - if("${alpha_type}" STREQUAL "alpha") - set(TEST_PNG_VALID FALSE) - endif() - endif() - - if(TEST_PNG_LINEAR) - if(NOT "${gamma_type}" STREQUAL "linear") - set(TEST_PNG_VALID FALSE) - endif() - elseif(TEST_PNG_SRGB) - if(NOT "${gamma_type}" STREQUAL "sRGB") - set(TEST_PNG_VALID FALSE) - endif() - elseif(TEST_PNG_G18) - if(NOT "${gamma_type}" STREQUAL "1.8") - set(TEST_PNG_VALID FALSE) - endif() - else() - if(NOT "${gamma_type}" STREQUAL "none") - set(TEST_PNG_VALID FALSE) - endif() - endif() - - if(TEST_PNG_VALID) - list(APPEND PNGSTEST_FILES "${test_png}") - endif() - endforeach() - # Should already be sorted, but sort anyway to be certain. - list(SORT PNGSTEST_FILES) - png_add_test(NAME pngstest-${gamma_type}-${alpha_type} - COMMAND pngstest - OPTIONS --tmpfile "${gamma_type}-${alpha_type}-" --log - FILES ${PNGSTEST_FILES}) - endforeach() - endforeach() - - add_executable(pngunknown ${pngunknown_sources}) - target_link_libraries(pngunknown png) - - png_add_test(NAME pngunknown-discard COMMAND pngunknown OPTIONS --strict default=discard FILES "${PNGTEST_PNG}") - png_add_test(NAME pngunknown-IDAT COMMAND pngunknown OPTIONS --strict default=discard IDAT=save FILES "${PNGTEST_PNG}") - png_add_test(NAME pngunknown-if-safe COMMAND pngunknown OPTIONS --strict default=if-safe FILES "${PNGTEST_PNG}") - png_add_test(NAME pngunknown-sAPI COMMAND pngunknown OPTIONS --strict bKGD=save cHRM=save gAMA=save all=discard iCCP=save sBIT=save sRGB=save FILES "${PNGTEST_PNG}") - png_add_test(NAME pngunknown-save COMMAND pngunknown OPTIONS --strict default=save FILES "${PNGTEST_PNG}") - png_add_test(NAME pngunknown-sTER COMMAND pngunknown OPTIONS --strict sTER=if-safe FILES "${PNGTEST_PNG}") - png_add_test(NAME pngunknown-vpAg COMMAND pngunknown OPTIONS --strict vpAg=if-safe FILES "${PNGTEST_PNG}") - - add_executable(pngimage ${pngimage_sources}) - target_link_libraries(pngimage png) - - png_add_test(NAME pngimage-quick COMMAND pngimage OPTIONS --list-combos --log FILES ${PNGSUITE_PNGS}) - png_add_test(NAME pngimage-full COMMAND pngimage OPTIONS --exhaustive --list-combos --log FILES ${PNGSUITE_PNGS}) -endif() - -if(PNG_SHARED) - add_executable(pngfix ${pngfix_sources}) - target_link_libraries(pngfix png) - set(PNG_BIN_TARGETS pngfix) - - add_executable(png-fix-itxt ${png_fix_itxt_sources}) - target_link_libraries(png-fix-itxt ${ZLIB_LIBRARY} ${M_LIBRARY}) - list(APPEND PNG_BIN_TARGETS png-fix-itxt) -endif() - -# Set a variable with CMake code which: -# Creates a symlink from src to dest (if possible) or alternatively -# copies if different. -include(CMakeParseArguments) - -function(create_symlink DEST_FILE) - - cmake_parse_arguments(S "" "FILE;TARGET" "" ${ARGN}) - - if(NOT S_TARGET AND NOT S_FILE) - message(FATAL_ERROR "create_symlink: Missing TARGET or FILE argument") - endif() - - if(S_TARGET AND S_FILE) - message(FATAL_ERROR "create_symlink: Both source file ${S_FILE} and build target ${S_TARGET} arguments are present; can only have one.") - endif() - - if(S_FILE) - # If we don't need to symlink something that's coming from a build target, - # we can go ahead and symlink/copy at configure time. - if(CMAKE_HOST_WIN32 AND NOT CYGWIN) - execute_process( - COMMAND "${CMAKE_COMMAND}" -E copy_if_different ${S_FILE} ${DEST_FILE} - WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}") - else() - execute_process( - COMMAND ${CMAKE_COMMAND} -E create_symlink ${S_FILE} ${DEST_FILE} - WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}") - endif() - endif() - - if(S_TARGET) - # We need to use generator expressions, which can be a bit tricky, so for - # simplicity make the symlink a POST_BUILD step and use the TARGET - # signature of add_custom_command. - if(CMAKE_HOST_WIN32 AND NOT CYGWIN) - add_custom_command(TARGET ${S_TARGET} POST_BUILD - COMMAND "${CMAKE_COMMAND}" -E copy_if_different $ $/${DEST_FILE}) - else() - add_custom_command(TARGET ${S_TARGET} POST_BUILD - COMMAND "${CMAKE_COMMAND}" -E create_symlink $ $/${DEST_FILE}) - endif() - endif() - -endfunction() - -# Create source generation scripts. -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/genchk.cmake.in - ${CMAKE_CURRENT_BINARY_DIR}/scripts/genchk.cmake @ONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/genout.cmake.in - ${CMAKE_CURRENT_BINARY_DIR}/scripts/genout.cmake @ONLY) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/scripts/gensrc.cmake.in - ${CMAKE_CURRENT_BINARY_DIR}/scripts/gensrc.cmake @ONLY) - -# libpng is a library so default to 'lib' -if(NOT DEFINED CMAKE_INSTALL_LIBDIR) - set(CMAKE_INSTALL_LIBDIR lib) -endif() - -# CREATE PKGCONFIG FILES -# We use the same files like ./configure, so we have to set its vars. -# Only do this on Windows for Cygwin - the files don't make much sense outside -# of a UNIX look-alike. -if(NOT WIN32 OR CYGWIN OR MINGW) - set(prefix ${CMAKE_INSTALL_PREFIX}) - set(exec_prefix ${CMAKE_INSTALL_PREFIX}) - set(libdir ${CMAKE_INSTALL_FULL_LIBDIR}) - set(includedir ${CMAKE_INSTALL_FULL_INCLUDEDIR}) - set(LIBS "-lz -lm") - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libpng.pc.in - ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}.pc @ONLY) - create_symlink(libpng.pc FILE ${PNGLIB_NAME}.pc) - - configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libpng-config.in - ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}-config @ONLY) - create_symlink(libpng-config FILE ${PNGLIB_NAME}-config) -endif() - -# SET UP LINKS -if(PNG_SHARED) - set_target_properties(png PROPERTIES -# VERSION 16.${PNGLIB_RELEASE}.1.6.37 - VERSION 16.${PNGLIB_RELEASE}.0 - SOVERSION 16 - CLEAN_DIRECT_OUTPUT 1) -endif() - -# INSTALL -if(NOT SKIP_INSTALL_LIBRARIES AND NOT SKIP_INSTALL_ALL) - install(TARGETS ${PNG_LIB_TARGETS} - EXPORT libpng - RUNTIME DESTINATION bin - LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} - ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} - FRAMEWORK DESTINATION ${CMAKE_INSTALL_LIBDIR}) - - if(PNG_SHARED) - # Create a symlink for libpng.dll.a => libpng16.dll.a on Cygwin - if(CYGWIN OR MINGW) - create_symlink(libpng${CMAKE_IMPORT_LIBRARY_SUFFIX} TARGET png) - install(FILES $/libpng${CMAKE_IMPORT_LIBRARY_SUFFIX} - DESTINATION ${CMAKE_INSTALL_LIBDIR}) - endif() - - if(NOT WIN32) - create_symlink(libpng${CMAKE_SHARED_LIBRARY_SUFFIX} TARGET png) - install(FILES $/libpng${CMAKE_SHARED_LIBRARY_SUFFIX} - DESTINATION ${CMAKE_INSTALL_LIBDIR}) - endif() - endif() - - if(PNG_STATIC) - if(NOT WIN32 OR CYGWIN OR MINGW) - create_symlink(libpng${CMAKE_STATIC_LIBRARY_SUFFIX} TARGET png_static) - install(FILES $/libpng${CMAKE_STATIC_LIBRARY_SUFFIX} - DESTINATION ${CMAKE_INSTALL_LIBDIR}) - endif() - endif() -endif() - -if(NOT SKIP_INSTALL_HEADERS AND NOT SKIP_INSTALL_ALL) - install(FILES ${libpng_public_hdrs} DESTINATION include) - install(FILES ${libpng_public_hdrs} DESTINATION include/${PNGLIB_NAME}) -endif() -if(NOT SKIP_INSTALL_EXECUTABLES AND NOT SKIP_INSTALL_ALL) - if(NOT WIN32 OR CYGWIN OR MINGW) - install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/libpng-config DESTINATION bin) - install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}-config DESTINATION bin) - endif() -endif() - -if(NOT SKIP_INSTALL_PROGRAMS AND NOT SKIP_INSTALL_ALL) - install(TARGETS ${PNG_BIN_TARGETS} - RUNTIME DESTINATION bin) -endif() - -if(NOT SKIP_INSTALL_FILES AND NOT SKIP_INSTALL_ALL) - # Install man pages - if(NOT PNG_MAN_DIR) - set(PNG_MAN_DIR "share/man") - endif() - install(FILES libpng.3 libpngpf.3 DESTINATION ${PNG_MAN_DIR}/man3) - install(FILES png.5 DESTINATION ${PNG_MAN_DIR}/man5) - # Install pkg-config files - if(NOT CMAKE_HOST_WIN32 OR CYGWIN OR MINGW) - install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libpng.pc - DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) - install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/libpng-config - DESTINATION bin) - install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}.pc - DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) - install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${PNGLIB_NAME}-config - DESTINATION bin) - endif() -endif() - -# Create an export file that CMake users can include() to import our targets. -if(NOT SKIP_INSTALL_EXPORT AND NOT SKIP_INSTALL_ALL) - install(EXPORT libpng DESTINATION lib/libpng FILE lib${PNG_LIB_NAME}.cmake) -endif() - -# what's with libpng-manual.txt and all the extra files? - -# UNINSTALL -# do we need this? - -# DIST -# do we need this? - -# to create msvc import lib for mingw compiled shared lib -# pexports libpng.dll > libpng.def -# lib /def:libpng.def /machine:x86 diff --git a/teraterm/susie_plugin/extlib/patched_file/zlib-1.2.11/CMakeLists.txt b/teraterm/susie_plugin/extlib/patched_file/zlib-1.2.11/CMakeLists.txt deleted file mode 100644 index b1d21df17..000000000 --- a/teraterm/susie_plugin/extlib/patched_file/zlib-1.2.11/CMakeLists.txt +++ /dev/null @@ -1,256 +0,0 @@ -cmake_minimum_required(VERSION 2.4.4) -set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS ON) - -project(zlib C) - -set(VERSION "1.2.11") - -option(ASM686 "Enable building i686 assembly implementation") -option(AMD64 "Enable building amd64 assembly implementation") - -set(INSTALL_BIN_DIR "${CMAKE_INSTALL_PREFIX}/bin" CACHE PATH "Installation directory for executables") -set(INSTALL_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib" CACHE PATH "Installation directory for libraries") -set(INSTALL_INC_DIR "${CMAKE_INSTALL_PREFIX}/include" CACHE PATH "Installation directory for headers") -set(INSTALL_MAN_DIR "${CMAKE_INSTALL_PREFIX}/share/man" CACHE PATH "Installation directory for manual pages") -set(INSTALL_PKGCONFIG_DIR "${CMAKE_INSTALL_PREFIX}/share/pkgconfig" CACHE PATH "Installation directory for pkgconfig (.pc) files") - -include(CheckTypeSize) -include(CheckFunctionExists) -include(CheckIncludeFile) -include(CheckCSourceCompiles) -enable_testing() - -check_include_file(sys/types.h HAVE_SYS_TYPES_H) -check_include_file(stdint.h HAVE_STDINT_H) -check_include_file(stddef.h HAVE_STDDEF_H) - -# -# Check to see if we have large file support -# -set(CMAKE_REQUIRED_DEFINITIONS -D_LARGEFILE64_SOURCE=1) -# We add these other definitions here because CheckTypeSize.cmake -# in CMake 2.4.x does not automatically do so and we want -# compatibility with CMake 2.4.x. -if(HAVE_SYS_TYPES_H) - list(APPEND CMAKE_REQUIRED_DEFINITIONS -DHAVE_SYS_TYPES_H) -endif() -if(HAVE_STDINT_H) - list(APPEND CMAKE_REQUIRED_DEFINITIONS -DHAVE_STDINT_H) -endif() -if(HAVE_STDDEF_H) - list(APPEND CMAKE_REQUIRED_DEFINITIONS -DHAVE_STDDEF_H) -endif() -check_type_size(off64_t OFF64_T) -if(HAVE_OFF64_T) - add_definitions(-D_LARGEFILE64_SOURCE=1) -endif() -set(CMAKE_REQUIRED_DEFINITIONS) # clear variable - -# -# Check for fseeko -# -check_function_exists(fseeko HAVE_FSEEKO) -if(NOT HAVE_FSEEKO) - add_definitions(-DNO_FSEEKO) -endif() - -# -# Check for unistd.h -# -check_include_file(unistd.h Z_HAVE_UNISTD_H) - -if(MSVC) - set(CMAKE_DEBUG_POSTFIX "d") - add_definitions(-D_CRT_SECURE_NO_DEPRECATE) - add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE) - include_directories(${CMAKE_CURRENT_SOURCE_DIR}) -endif() - -if(NOT CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_CURRENT_BINARY_DIR) - # If we're doing an out of source build and the user has a zconf.h - # in their source tree... - if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/zconf.h) - message(STATUS "Renaming") - message(STATUS " ${CMAKE_CURRENT_SOURCE_DIR}/zconf.h") - message(STATUS "to 'zconf.h.included' because this file is included with zlib") - message(STATUS "but CMake generates it automatically in the build directory.") - file(RENAME ${CMAKE_CURRENT_SOURCE_DIR}/zconf.h ${CMAKE_CURRENT_SOURCE_DIR}/zconf.h.included) - endif() -endif() - -set(ZLIB_PC ${CMAKE_CURRENT_BINARY_DIR}/zlib.pc) -configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/zlib.pc.cmakein - ${ZLIB_PC} @ONLY) -configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/zconf.h.cmakein - ${CMAKE_CURRENT_BINARY_DIR}/zconf.h @ONLY) -include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}) - - -#============================================================================ -# zlib -#============================================================================ - -set(ZLIB_PUBLIC_HDRS - ${CMAKE_CURRENT_BINARY_DIR}/zconf.h - zlib.h -) -set(ZLIB_PRIVATE_HDRS - crc32.h - deflate.h - gzguts.h - inffast.h - inffixed.h - inflate.h - inftrees.h - trees.h - zutil.h -) -set(ZLIB_SRCS - adler32.c - compress.c - crc32.c - deflate.c - gzclose.c - gzlib.c - gzread.c - gzwrite.c - inflate.c - infback.c - inftrees.c - inffast.c - trees.c - uncompr.c - zutil.c -) - -if(NOT MINGW) - set(ZLIB_DLL_SRCS - win32/zlib1.rc # If present will override custom build rule below. - ) -endif() - -if(CMAKE_COMPILER_IS_GNUCC) - if(ASM686) - set(ZLIB_ASMS contrib/asm686/match.S) - elseif (AMD64) - set(ZLIB_ASMS contrib/amd64/amd64-match.S) - endif () - - if(ZLIB_ASMS) - add_definitions(-DASMV) - set_source_files_properties(${ZLIB_ASMS} PROPERTIES LANGUAGE C COMPILE_FLAGS -DNO_UNDERLINE) - endif() -endif() - -if(MSVC) - if(ASM686) - ENABLE_LANGUAGE(ASM_MASM) - set(ZLIB_ASMS - contrib/masmx86/inffas32.asm - contrib/masmx86/match686.asm - ) - elseif (AMD64) - ENABLE_LANGUAGE(ASM_MASM) - set(ZLIB_ASMS - contrib/masmx64/gvmat64.asm - contrib/masmx64/inffasx64.asm - ) - endif() - - if(ZLIB_ASMS) - add_definitions(-DASMV -DASMINF) - endif() -endif() - -# parse the full version number from zlib.h and include in ZLIB_FULL_VERSION -file(READ ${CMAKE_CURRENT_SOURCE_DIR}/zlib.h _zlib_h_contents) -string(REGEX REPLACE ".*#define[ \t]+ZLIB_VERSION[ \t]+\"([-0-9A-Za-z.]+)\".*" - "\\1" ZLIB_FULL_VERSION ${_zlib_h_contents}) - -if(MINGW) - # This gets us DLL resource information when compiling on MinGW. - if(NOT CMAKE_RC_COMPILER) - set(CMAKE_RC_COMPILER windres.exe) - endif() - - add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/zlib1rc.obj - COMMAND ${CMAKE_RC_COMPILER} - -D GCC_WINDRES - -I ${CMAKE_CURRENT_SOURCE_DIR} - -I ${CMAKE_CURRENT_BINARY_DIR} - -o ${CMAKE_CURRENT_BINARY_DIR}/zlib1rc.obj - -i ${CMAKE_CURRENT_SOURCE_DIR}/win32/zlib1.rc) - set(ZLIB_DLL_SRCS ${CMAKE_CURRENT_BINARY_DIR}/zlib1rc.obj) -endif(MINGW) - -add_library(zlib SHARED ${ZLIB_SRCS} ${ZLIB_ASMS} ${ZLIB_DLL_SRCS} ${ZLIB_PUBLIC_HDRS} ${ZLIB_PRIVATE_HDRS}) -add_library(zlibstatic STATIC ${ZLIB_SRCS} ${ZLIB_ASMS} ${ZLIB_PUBLIC_HDRS} ${ZLIB_PRIVATE_HDRS}) -set_target_properties(zlib PROPERTIES DEFINE_SYMBOL ZLIB_DLL) -set_target_properties(zlib PROPERTIES SOVERSION 1) - -if(NOT CYGWIN) - # This property causes shared libraries on Linux to have the full version - # encoded into their final filename. We disable this on Cygwin because - # it causes cygz-${ZLIB_FULL_VERSION}.dll to be created when cygz.dll - # seems to be the default. - # - # This has no effect with MSVC, on that platform the version info for - # the DLL comes from the resource file win32/zlib1.rc - set_target_properties(zlib PROPERTIES VERSION ${ZLIB_FULL_VERSION}) -endif() - -if(MSVC) - if(NOT WITH_CRT_DLL) - target_compile_options(zlib PRIVATE -MT$<$:d>) - target_compile_options(zlibstatic PRIVATE -MT$<$:d>) - endif() -endif() - -if(UNIX) - # On unix-like platforms the library is almost always called libz - set_target_properties(zlib zlibstatic PROPERTIES OUTPUT_NAME z) - if(NOT APPLE) - set_target_properties(zlib PROPERTIES LINK_FLAGS "-Wl,--version-script,\"${CMAKE_CURRENT_SOURCE_DIR}/zlib.map\"") - endif() -elseif(BUILD_SHARED_LIBS AND WIN32) - # Creates zlib1.dll when building shared library version - set_target_properties(zlib PROPERTIES SUFFIX "1.dll") -endif() - -if(NOT SKIP_INSTALL_LIBRARIES AND NOT SKIP_INSTALL_ALL ) - install(TARGETS zlib zlibstatic - RUNTIME DESTINATION "${INSTALL_BIN_DIR}" - ARCHIVE DESTINATION "${INSTALL_LIB_DIR}" - LIBRARY DESTINATION "${INSTALL_LIB_DIR}" ) -endif() -if(NOT SKIP_INSTALL_HEADERS AND NOT SKIP_INSTALL_ALL ) - install(FILES ${ZLIB_PUBLIC_HDRS} DESTINATION "${INSTALL_INC_DIR}") -endif() -if(NOT SKIP_INSTALL_FILES AND NOT SKIP_INSTALL_ALL ) - install(FILES zlib.3 DESTINATION "${INSTALL_MAN_DIR}/man3") -endif() -if(NOT SKIP_INSTALL_FILES AND NOT SKIP_INSTALL_ALL ) - install(FILES ${ZLIB_PC} DESTINATION "${INSTALL_PKGCONFIG_DIR}") -endif() - -#============================================================================ -# Example binaries -#============================================================================ - -add_executable(example test/example.c) -target_link_libraries(example zlib) -add_test(example example) - -add_executable(minigzip test/minigzip.c) -target_link_libraries(minigzip zlib) - -if(HAVE_OFF64_T) - add_executable(example64 test/example.c) - target_link_libraries(example64 zlib) - set_target_properties(example64 PROPERTIES COMPILE_FLAGS "-D_FILE_OFFSET_BITS=64") - add_test(example64 example64) - - add_executable(minigzip64 test/minigzip.c) - target_link_libraries(minigzip64 zlib) - set_target_properties(minigzip64 PROPERTIES COMPILE_FLAGS "-D_FILE_OFFSET_BITS=64") -endif() diff --git a/teraterm/teraterm/CMakeLists.txt b/teraterm/teraterm/CMakeLists.txt deleted file mode 100644 index 0e1b4091a..000000000 --- a/teraterm/teraterm/CMakeLists.txt +++ /dev/null @@ -1,492 +0,0 @@ -project("teraterm") - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../libs/lib_SFMT.cmake) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../libs/lib_oniguruma.cmake) - -set(ENABLE_DEBUG_INFO 1) - -add_executable( - ${PROJECT_NAME} WIN32 - ${CMAKE_CURRENT_BINARY_DIR}/../common/svnversion.h - WSAAsyncGetAddrInfo.c - WSAAsyncGetAddrInfo.h - agent_jsonrpc.c - agent_jsonrpc.h - agent_mcp.c - agent_mcp.h - agent_server.cpp - agent_server.h - agent_shmem.c - agent_shmem.h - ../../libs/cJSON/cJSON.c - ../../libs/cJSON/cJSON.h - broadcast.cpp - broadcast.h - buffer.c - buffer.h - buffcell.cpp - buffcell.h - charset.cpp - charset.h - checkeol.cpp - checkeol.h - clipboar.c - clipboar.h - commlib.c - commlib.h - externalsetup.cpp - externalsetup.h - filesys.cpp - filesys.h - filesys_log.cpp - filesys_log.rc - filesys_log_res.h - filesys_proto.cpp - filesys_proto.h - keyboard.c - keyboard.h - scp.cpp - scp.h - sendmem.cpp - sendmem.h - sizetip.c - sizetip.h - tekwin.cpp - tekwin.h - telnet.c - telnet.h - telnet_defs.h - telnet_neg.cpp - telnet_neg.h - teraprn.cpp - teraprn.h - teraterm.cpp - teraterm_manifest.rc - teraterml.h - theme.h - themefile.cpp - tslib.h - tslib.cpp - tt-version.rc - ttdde.c - ttdde.h - ttdialog.c - ttdialog.h - ttermpro.rc - ttfileio.c - ttfileio.h - ttime.c - ttime.h - ttplug.cpp - ttplug.h - ttsetup.c - ttsetup.h - ttwinman.c - ttwinman.h - ttwsk.c - ttwsk.h - unicode_test.h - vtdisp.c - vtdisp.h - vtdraw.cpp - vtdraw.h - vtterm.c - vtterm.h - vtparams.cpp - vtparams.h - titlestack.cpp - titlestack.h - vtwin.cpp - vtwin.h - winjump.c - winjump.h -) - -set(SRC_DIALOG - ../common/tt_res.h - addsetting.cpp - addsetting.h - clipboarddlg.cpp - clipboarddlg.h - coding_pp.cpp - coding_pp.h - coding_pp.rc - coding_pp_res.h - color_sample.cpp - color_sample.h - commentdlg.cpp - commentdlg.h - debug_pp.cpp - debug_pp.h - debug_pp.rc - debug_pp_res.h - dnddlg.cpp - dnddlg.h - font_pp.cpp - font_pp.h - font_pp.rc - font_pp_res.h - ftdlg.cpp - ftdlg.h - ftdlg_lite.cpp - ftdlg_lite.h - general_pp.cpp - general_pp.h - keyboard_pp.c - keyboard_pp.h - log_pp.cpp - log_pp.h - logdlg.cpp - logdlg.h - mouse_pp.cpp - mouse_pp.h - mouse_pp.rc - plugin_pp.cpp - plugin_pp.h - plugin_pp.rc - plugin_pp_res.h - prnabort.cpp - prnabort.h - protodlg.cpp - protodlg.h - recvfiledlg.cpp - recvfiledlg.h - resource.h - sendfiledlg.cpp - sendfiledlg.h - serial_pp.cpp - serial_pp.h - setupdirdlg.cpp - setupdirdlg.h - tekfont_pp.cpp - tekfont_pp.h - tekfont_pp.rc - tekfont_pp_res.h - tcpip_pp.cpp - tcpip_pp.h - term_pp.cpp - term_pp.h - theme_pp.cpp - theme_pp.h - themedlg.cpp - themedlg.h - themedlg.rc - themedlg_res.h - win_pp.cpp - win_pp.h - ui_pp.cpp - ui_pp.h - ui_pp.rc - ui_pp_res.h -) - -target_sources( - ${PROJECT_NAME} - PRIVATE - ${SRC_DIALOG} -) - -source_group( - "dialog" - FILES ${SRC_DIALOG}) - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../teraterm/uni2sjis.map - ../teraterm/unisym2decsp.map - ../ttpcmn/sjis2uni.map - uni_combining.map - unicode_asian_width.tbl - unicode_combine.tbl - unicode_emoji.tbl -) - -source_group( - "table_datas" - REGULAR_EXPRESSION - "(map|tbl)$" -) - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../common/tt_res.h - ../common/ttcommon.h - ../common/ttddecmnd.h - ../common/tttypes.h - ../common/tektypes.h - ../common/ttplugin.h - ../common/tt-version.h - ../common/teraterm.h - ../common/ttlib.h - ../common/dlglib.h - ../common/codemap.h - ../common/compat_win.h - ../common/tmfc.h - ../common/i18n.h - ../common/dllutil.h - ../common/codeconv.h - ../common/tipwin.h -) - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/edithistory.cpp - ../../teraterm/common/edithistory.h - ../../teraterm/common/edithistory.rc - ../../teraterm/common/edithistory_res.h -) - -source_group( - "common" - REGULAR_EXPRESSION - "..\/common\/" -) - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../ttpdlg/aboutdlg.c - ../ttpdlg/choosefontdlg.c - ../ttpdlg/dlg_res.h - ../ttpdlg/generaldlg.c - ../ttpdlg/hostdlg.c - ../ttpdlg/keyboarddlg.c - ../ttpdlg/serialdlg.cpp - ../ttpdlg/tcpipdlg.c - ../ttpdlg/termdlg.c - ../ttpdlg/ttdlg.c - ../ttpdlg/ttdlg.h - ../ttpdlg/ttpdlg.rc - ../ttpdlg/windlg.cpp - ../ttpdlg/windowdlg.cpp - ) - -source_group( - "ttpdlg" - REGULAR_EXPRESSION - "..\/ttpdlg\/") - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../ttpfile/bplus.c - ../ttpfile/bplus.h - ../ttpfile/filesys_io.h - ../ttpfile/filesys_win32.cpp - ../ttpfile/filesys_win32.h - ../ttpfile/ftlib.c - ../ttpfile/ftlib.h - ../ttpfile/kermit.c - ../ttpfile/kermit.h - ../ttpfile/protolog.cpp - ../ttpfile/protolog.h - ../ttpfile/quickvan.c - ../ttpfile/quickvan.h - ../ttpfile/raw.c - ../ttpfile/raw.h - ../ttpfile/xmodem.c - ../ttpfile/xmodem.h - ../ttpfile/ymodem.c - ../ttpfile/ymodem.h - ../ttpfile/zmodem.c - ../ttpfile/zmodem.h -) - -source_group( - "ttpfile" - REGULAR_EXPRESSION - "..\/ttpfile\/") - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../ttpset/ttset.c - ../ttpset/ttset.h - ../ttpset/ttset_i.h - ../ttpset/ttset_keyboard.c -) - -source_group( - "ttpset" - REGULAR_EXPRESSION - "..\/ttpset\/") - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../ttpcmn/ttcmn_dup.cpp - ../ttpcmn/ttcmn_dup.h - ../ttpcmn/ttcmn_shared_memory.h - ../ttpcmn/ttcmn_static.c - ../ttpcmn/ttcmn_static.h -) - -source_group( - "ttpcmn" - REGULAR_EXPRESSION - "..\/ttpcmn\/") - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../ttptek/tekesc.c - ../ttptek/tekesc.h - ../ttptek/tttek.c - ../ttptek/tttek.h -) - -source_group( - "ttptek" - REGULAR_EXPRESSION - "..\/ttptek\/") - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - if(${CMAKE_VERSION} VERSION_LESS "3.12.0") - set(CMAKE_C_STANDARD_LIBRARIES "") - set(CMAKE_CXX_STANDARD_LIBRARIES "") - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /NODEFAULTLIB") - else() - target_link_options( - ${PROJECT_NAME} - PRIVATE - /NODEFAULTLIB - ) - endif() - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -if (MSVC) - if(${CMAKE_VERSION} VERSION_LESS "3.12.0") - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MANIFEST:NO") - else() - target_link_options( - ${PROJECT_NAME} - PRIVATE - /MANIFEST:NO) - endif() -endif() - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - OUTPUT_NAME "ttermpro" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - . - ../teraterm - ../ttpfile - ../ttpdlg - ../ttpcmn - ../susie_plugin - ../ttptek - ../../libs/cJSON - ${ONIGURUMA_INCLUDE_DIRS} - ${SFMT_INCLUDE_DIRS} - ) - -if(MINGW) - target_include_directories( - ${PROJECT_NAME} - PRIVATE - . - ) -endif() - -if(MSVC AND ENABLE_DEBUG_INFO) - if(${CMAKE_VERSION} VERSION_GREATER "3.13") - target_link_options( - ${PROJECT_NAME} - PRIVATE - /DEBUG:FULL - /pdbaltpath:ttermpro.pdb - /map - ) - else() - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /map") - endif() -elseif(MINGW) - target_link_options( - ${PROJECT_NAME} - PRIVATE - -Wl,-Map=ttermpro.map,-cref - ) -endif() - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - ttpcmn - cyglib - ${ONIGURUMA_LIB} - ${SFMT_LIB} - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) -endif() - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - advapi32 - comctl32 - comdlg32 - gdi32 - kernel32 - ole32 - oleaut32 - shell32 - user32 - uuid - ws2_32 - ) - -install( - TARGETS ${PROJECT_NAME} - DESTINATION . - ) -if(MSVC AND ENABLE_DEBUG_INFO AND (${CMAKE_VERSION} VERSION_GREATER "3.13")) - if("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - install( - FILES - $ - $/ttermpro.map - DESTINATION . - ) - else() - # single configuration like "NMake Makefiles" - install( - FILES - $ - ${CMAKE_BINARY_DIR}/ttermpro.map - DESTINATION . - ) - endif() -endif() diff --git a/teraterm/ttpcmn/CMakeLists.txt b/teraterm/ttpcmn/CMakeLists.txt deleted file mode 100644 index a9be13bfa..000000000 --- a/teraterm/ttpcmn/CMakeLists.txt +++ /dev/null @@ -1,124 +0,0 @@ -project("ttpcmn") - -add_library( - ${PROJECT_NAME} - SHARED - language.c - language.h - ttcmn.c - ttcmn_cominfo.c - ttcmn_cominfo.h - ttcmn_lib.cpp - ttcmn_lib.h - ttcmn_notify.cpp - ttcmn_notify.h - ttcmn_shared_memory.h - ttpcmn-version.rc - ttpcmn.def - ) - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - if(${CMAKE_VERSION} VERSION_LESS "3.12.0") - set(CMAKE_C_STANDARD_LIBRARIES "") - set(CMAKE_CXX_STANDARD_LIBRARIES "") - set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /NODEFAULTLIB") - else() - target_link_options( - ${PROJECT_NAME} - PRIVATE - /NODEFAULTLIB - ) - endif() - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/libmingw/tlssup.c - ) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../common/teraterm.h - ../common/tttypes.h - ../common/i18n.h - ../common/i18n.c - ../common/ttlib.c - ../common/ttlib.h - ../common/servicenames.c - ../common/servicenames.h - ../common/tt-version.h - ../common/ttcommon.h - ../common/tt_res.h - ../common/codeconv.h - ../common/compat_win.h - ../common/dllutil.h - ) - -source_group( - "common" - REGULAR_EXPRESSION - "..\/common\/" - ) - -target_compile_definitions( - ttpcmn - PRIVATE -DTTPCMN_DLL - ) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../ttpfile - . - ) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) -endif() - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - ole32 - setupapi - ) - -install( - TARGETS ${PROJECT_NAME} - RUNTIME - DESTINATION . - ) diff --git a/teraterm/ttpmacro/CMakeLists.txt b/teraterm/ttpmacro/CMakeLists.txt deleted file mode 100644 index 974a5497f..000000000 --- a/teraterm/ttpmacro/CMakeLists.txt +++ /dev/null @@ -1,168 +0,0 @@ -project("ttpmacro") - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../libs/lib_oniguruma.cmake) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../libs/lib_SFMT.cmake) -include(${CMAKE_CURRENT_SOURCE_DIR}/../../libs/lib_libressl.cmake) - -add_executable( - ${PROJECT_NAME} WIN32 - ttm_res.h - errdlg.cpp - errdlg.h - inpdlg.cpp - inpdlg.h - ListDlg.cpp - ListDlg.h - msgdlg.cpp - msgdlg.h - statdlg.cpp - statdlg.h - macrodlgbase.h - ttl.cpp - ttl.h - ttl_gui.cpp - ttl_gui.h - ttm_res.h - ttmacro.cpp - ttmacro.h - ttmbuff.c - ttmbuff.h - ttmdde.c - ttmdde.h - ttmdef.h - ttmdlg.cpp - ttmdlg.h - ttmenc.c - ttmenc2.c - ttmenc.h - ttmenc2.h - ttmlib.c - ttmlib.h - ttmmain.cpp - ttmmain.h - ttmmsg.h - ttmonig.h - ttmparse.cpp - ttmparse.h - wait4all.c - wait4all.h - - ttpmacro.rc - ttm-version.rc - ttmacro_manifest.rc - ) - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../common/teraterm.h - ../common/ttcommon.h - ../common/ttddecmnd.h - ../common/tttypes.h - ../common/tt-version.h - ../common/i18n.h - ../common/ttlib.c - ../common/ttlib.h - ../common/tmfc.h - ../common/compat_win.h - ../common/codeconv.h - ../common/dllutil.h - ) - -source_group( - "common" - REGULAR_EXPRESSION - "..\/common\/" - ) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ${ONIGURUMA_INCLUDE_DIRS} - ${SFMT_INCLUDE_DIRS} - ${LIBRESSL_INCLUDE_DIRS} - ${CMAKE_CURRENT_SOURCE_DIR}/../ttpfile - ) - -if (MSVC) - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MANIFEST:NO") -endif() - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - ttpcmn - ${ONIGURUMA_LIB} - ${SFMT_LIB} - ${LIBRESSL_LIB} - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) -endif() - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - ws2_32 - comctl32 - gdi32 - comdlg32 - bcrypt -) - -if(MSVC) - if(${CMAKE_VERSION} VERSION_GREATER "3.13") - target_link_options( - ${PROJECT_NAME} - PRIVATE - /DEBUG:FULL - /PDBALTPATH:${PROJECT_NAME}.pdb - /map - ) - endif() -endif() - -install( - TARGETS ${PROJECT_NAME} - DESTINATION . -) - -if(MSVC) - install( - FILES - $ - $/ttpmacro.map - DESTINATION . - ) -endif() diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt deleted file mode 100644 index a5cbde949..000000000 --- a/tools/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ -add_subdirectory(ttbroadcast) -set_target_properties( - ttbroadcast - PROPERTIES FOLDER tools -) - -add_subdirectory(lscom) -set_target_properties( - lscom - PROPERTIES FOLDER tools -) - -add_subdirectory(ttreg) -set_target_properties( - ttreg - PROPERTIES FOLDER tools -) diff --git a/tools/lscom/CMakeLists.txt b/tools/lscom/CMakeLists.txt deleted file mode 100644 index c2dd00496..000000000 --- a/tools/lscom/CMakeLists.txt +++ /dev/null @@ -1,66 +0,0 @@ -project("lscom") - -set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/") - -add_executable( - ${PROJECT_NAME} - main.cpp - iswindowsntkernel.c - # - ../../teraterm/ttpcmn/ttcmn_cominfo.h - ../../teraterm/ttpcmn/ttcmn_cominfo.c - # - ../libs/getopt_mb_uni_src/getopt.c - ../libs/getopt_mb_uni_src/getopt.h - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ${CMAKE_CURRENT_SOURCE_DIR}/../../teraterm/ttpcmn - ${CMAKE_CURRENT_SOURCE_DIR}/../libs/getopt_mb_uni_src - ) - -target_compile_definitions( - ${PROJECT_NAME} - PRIVATE - STATIC_GETOPT - ) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static -) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -if(MINGW) - target_link_options( - ${PROJECT_NAME} - PRIVATE - -municode - ) -endif() diff --git a/tools/ttbroadcast/CMakeLists.txt b/tools/ttbroadcast/CMakeLists.txt deleted file mode 100644 index 7c098fafb..000000000 --- a/tools/ttbroadcast/CMakeLists.txt +++ /dev/null @@ -1,40 +0,0 @@ -project("ttbroadcast") - -set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/") - -add_executable( - ${PROJECT_NAME} - ../libs/getopt_mb_uni_src/getopt.c - ../libs/getopt_mb_uni_src/getopt.h - main.cpp - # - ${CMAKE_CURRENT_SOURCE_DIR}/../../teraterm/common/asprintf.h - ${CMAKE_CURRENT_SOURCE_DIR}/../../teraterm/common/codeconv.h - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ${CMAKE_CURRENT_SOURCE_DIR}/../libs/getopt_mb_uni_src - ) - -target_compile_definitions( - ${PROJECT_NAME} - PRIVATE - STATIC_GETOPT - ) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - ttpcmn - common_static - ) - -if(MINGW) - target_link_options( - ${PROJECT_NAME} - PRIVATE - -municode - ) -endif() diff --git a/tools/ttreg/CMakeLists.txt b/tools/ttreg/CMakeLists.txt deleted file mode 100644 index 0dc16de01..000000000 --- a/tools/ttreg/CMakeLists.txt +++ /dev/null @@ -1,33 +0,0 @@ -project("ttreg") - -add_executable( - ${PROJECT_NAME} - ttreg.cpp -) - -if(MSVC) - if(${CMAKE_VERSION} VERSION_LESS "3.13.0") - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /ENTRY:wmainCRTStartup") - else() - target_link_options( - ${PROJECT_NAME} - PRIVATE - /ENTRY:wmainCRTStartup - ) - endif() -else(MSVC) - target_link_options( - ${PROJECT_NAME} - PRIVATE - -municode - ) -endif(MSVC) - -install( - TARGETS ${PROJECT_NAME} - DESTINATION . -) -install(FILES - README.md - DESTINATION . - RENAME ttreg.md) diff --git a/ttpmenu/CMakeLists.txt b/ttpmenu/CMakeLists.txt deleted file mode 100644 index d9a9e17b3..000000000 --- a/ttpmenu/CMakeLists.txt +++ /dev/null @@ -1,127 +0,0 @@ -project("ttpmenu") - -include(${CMAKE_CURRENT_SOURCE_DIR}/../libs/lib_libressl.cmake) - -add_executable( - ${PROJECT_NAME} WIN32 - registry.cpp - registry.h - resource.h - ttpmenu-version.h - ttpmenu-version.rc - ttpmenu.cpp - ttpmenu.h - winmisc.cpp - winmisc.h - # - left.ico - right.ico - teraterm.ico - ttpmenu.rc - ) - -target_compile_definitions( - ${PROJECT_NAME} - PRIVATE -# UNICODE=1 _UNICODE=1 -) - -if(MSVC) - target_compile_options( - ${PROJECT_NAME} - PRIVATE - /W4 - ) -endif(MSVC) - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../teraterm/common/ttlib.h - ../teraterm/common/i18n.h - ../teraterm/common/codeconv.h - ../teraterm/common/asprintf.h - ../teraterm/common/dlglib.h - ../teraterm/common/fileread.h - ../teraterm/common/ttcommdlg.h - ../teraterm/common/ttdebug.h - ../teraterm/common/ttdup.h - ../teraterm/common/win32helper.h - ../teraterm/common/tt-version.h -) - -source_group( - "common" - REGULAR_EXPRESSION - "teraterm\/common\/") - -target_sources( - ${PROJECT_NAME} - PRIVATE - ${LIBRESSL_INCLUDE_DIRS}/openssl/sha.h - ${LIBRESSL_INCLUDE_DIRS}/openssl/evp.h - ${LIBRESSL_INCLUDE_DIRS}/openssl/rand.h - ${LIBRESSL_INCLUDE_DIRS}/openssl/hmac.h - ${LIBRESSL_INCLUDE_DIRS}/openssl/crypto.h -) - -source_group( - "libressl" - REGULAR_EXPRESSION - "${LIBRESSL_INCLUDE_DIRS}/openssl/") - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) - if(MSVC) - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - . - ${LIBRESSL_INCLUDE_DIRS} - ) - -if(MSVC) - if(${CMAKE_VERSION} VERSION_LESS "3.12.0") - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MANIFEST:NO") - else() - target_link_options( - ${PROJECT_NAME} - PRIVATE - /MANIFEST:NO) - endif() -endif() - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - comctl32 - ${LIBRESSL_LIB} - bcrypt - ws2_32 - Crypt32 - wtsapi32 - ) - -install( - TARGETS ${PROJECT_NAME} - DESTINATION . - ) diff --git a/ttssh2/CMakeLists.txt b/ttssh2/CMakeLists.txt deleted file mode 100644 index 4cadf44e4..000000000 --- a/ttssh2/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -add_subdirectory(ttxssh) -set_target_properties(ttxssh PROPERTIES FOLDER ttssh2) - -add_subdirectory(matcher) -set_target_properties(matcher PROPERTIES FOLDER ttssh2) - -add_subdirectory(argon2) -set_target_properties(argon2 PROPERTIES FOLDER ttssh2) - -add_subdirectory(libsshagentc) -set_target_properties(libsshagentc PROPERTIES FOLDER ttssh2) diff --git a/ttssh2/argon2/CMakeLists.txt b/ttssh2/argon2/CMakeLists.txt deleted file mode 100644 index 7e56c01a0..000000000 --- a/ttssh2/argon2/CMakeLists.txt +++ /dev/null @@ -1,48 +0,0 @@ -project("argon2") - -set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/") - -add_library( - ${PROJECT_NAME} - argon2.h - ../../libs/argon2/src/argon2.c - ../../libs/argon2/src/blake2/blake2-impl.h - ../../libs/argon2/src/blake2/blake2.h - ../../libs/argon2/src/blake2/blake2b.c - ../../libs/argon2/src/blake2/blamka-round-opt.h - ../../libs/argon2/src/blake2/blamka-round-ref.h - ../../libs/argon2/src/core.c - ../../libs/argon2/src/core.h - ../../libs/argon2/src/encoding.c - ../../libs/argon2/src/encoding.h - ../../libs/argon2/src/ref.c - ../../libs/argon2/src/thread.c - ../../libs/argon2/src/thread.h - ) - -if(MSVC AND (MSVC_VERSION LESS_EQUAL 1500)) - # Visual Studio 2005, 2008 (1500=VS2008) - target_sources( - ${PROJECT_NAME} - PRIVATE - compat/stdint.h - ) - target_include_directories( - ${PROJECT_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR}/compat - ) -endif() - -source_group( - "libs_argon2" - REGULAR_EXPRESSION - "libs/argon2/") - -target_include_directories( - ${PROJECT_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR}/ - PRIVATE - ${CMAKE_CURRENT_LIST_DIR}/../../libs/argon2/src - ) diff --git a/ttssh2/libsshagentc/CMakeLists.txt b/ttssh2/libsshagentc/CMakeLists.txt deleted file mode 100644 index 028aa0b3c..000000000 --- a/ttssh2/libsshagentc/CMakeLists.txt +++ /dev/null @@ -1,18 +0,0 @@ -cmake_minimum_required(VERSION 3.11) -project(libsshagentc) - -# どの libsshagentc を使用するか -option(SSHAGENTC_SKELTON "use skelton" OFF) - -option(SSHAGENTC_TOOL "sshagentc test/debug tool" OFF) - -if(SSHAGENTC_SKELTON) - add_subdirectory(skelton) -else() - add_subdirectory(sshagentc) -endif() - -# for debug/test -if(SSHAGENTC_TOOL) - add_subdirectory(sshagentc_tool) -endif() diff --git a/ttssh2/libsshagentc/skelton/CMakeLists.txt b/ttssh2/libsshagentc/skelton/CMakeLists.txt deleted file mode 100644 index a0233679b..000000000 --- a/ttssh2/libsshagentc/skelton/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -project("libsshagentc") - -add_library( - ${PROJECT_NAME} - ../libputty.h - skelton.c -) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - .. -) diff --git a/ttssh2/libsshagentc/sshagentc/CMakeLists.txt b/ttssh2/libsshagentc/sshagentc/CMakeLists.txt deleted file mode 100644 index ff5306a4a..000000000 --- a/ttssh2/libsshagentc/sshagentc/CMakeLists.txt +++ /dev/null @@ -1,52 +0,0 @@ -project("libsshagentc") - -add_library( - ${PROJECT_NAME} - ../libputty.h - agentc.cpp - sha256.h -) - -if(1) - target_sources( - ${PROJECT_NAME} - PRIVATE - sha256.h - sha256_bcrypt.cpp - ) -endif() - -if(0) - target_sources( - ${PROJECT_NAME} - PRIVATE - sha256.h - sha256_openssl.cpp - ) -endif() - -if(MSVC) - target_compile_options( - ${PROJECT_NAME} - PRIVATE - -W4 - ) -else() - target_compile_options( - ${PROJECT_NAME} - PRIVATE - -Wall -Wextra - ) -endif() - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ${CMAKE_CURRENT_LIST_DIR}/.. -) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - crypt32 -) diff --git a/ttssh2/libsshagentc/sshagentc_tool/CMakeLists.txt b/ttssh2/libsshagentc/sshagentc_tool/CMakeLists.txt deleted file mode 100644 index 32600b836..000000000 --- a/ttssh2/libsshagentc/sshagentc_tool/CMakeLists.txt +++ /dev/null @@ -1,30 +0,0 @@ -project("sshagentc_tool") - -set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/") - -add_executable( - ${PROJECT_NAME} - main.cpp - ../libputty.h -) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - . - ../ -) - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - libsshagentc -) - -if(MINGW) - target_link_options( - ${PROJECT_NAME} - PRIVATE - -municode - ) -endif() diff --git a/ttssh2/matcher/CMakeLists.txt b/ttssh2/matcher/CMakeLists.txt deleted file mode 100644 index f78d09e2e..000000000 --- a/ttssh2/matcher/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ -project("matcher") - -set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/") - -add_executable( - ${PROJECT_NAME} - matcher.c - test.c - ) - -if(SUPPORT_OLD_WINDOWS) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - ) -endif() diff --git a/ttssh2/ttxssh/CMakeLists.txt b/ttssh2/ttxssh/CMakeLists.txt deleted file mode 100644 index 2799f1173..000000000 --- a/ttssh2/ttxssh/CMakeLists.txt +++ /dev/null @@ -1,304 +0,0 @@ - -project("ttxssh") - -option(TTXSSH_LIBRESSL "User LibreSSL" on) -option(TTXSSH_OPENSSL3 "Use OpenSSL3" off) - -include(${CMAKE_CURRENT_SOURCE_DIR}/../../libs/lib_zlib.cmake) -if(TTXSSH_LIBRESSL) - include(${CMAKE_CURRENT_SOURCE_DIR}/../../libs/lib_libressl.cmake) -elseif(TTXSSH_OPENSSL3) - include(${CMAKE_CURRENT_SOURCE_DIR}/../../libs/lib_openssl3.cmake) -else() - include(${CMAKE_CURRENT_SOURCE_DIR}/../../libs/lib_openssl.cmake) -endif() - -add_library( - ${PROJECT_NAME} SHARED - ) - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../matcher/matcher.c - arc4random.c - arc4random.h - auth.c - auth.h - bcrypt_pbkdf.c - blf.h - blowfish.c - buffer.c - buffer.h - chacha.c - chacha.h - cipher-3des1.c - cipher-3des1.h - cipher-chachapoly-libcrypto.c - cipher-chachapoly.h - cipher-ctr.c - cipher-ctr.h - cipher.c - cipher.h - comp.c - comp.h - config.h - crypt.c - crypt.h - crypto_api.h - digest.c - digest.h - dns.c - dns.h - ed25519.c - fwd-socks.c - fwd-socks.h - fwd.c - fwd.h - fwdui.c - fwdui.h - hash.c - hmac.c - hmac.h - hostkey.c - hostkey.h - hosts.c - hosts.h - kex.c - kex.h - key.c - key.h - keyfiles.c - keyfiles.h - keyfiles-putty.c - keyfiles-putty.h - mac.c - mac.h - openbsd-compat.c - openbsd-compat.h - pkt.c - pkt.h - poly1305.c - poly1305.h - resource.h - sftp.c - sftp.h - smult_curve25519_ref.c - sntrup761.c - ssh.c - ssh.h - ssherr.c - ssherr.h - ttxssh-version.h - ttxssh-version.rc - ttxssh.c - ttxssh.def - ttxssh.h - ttxssh.rc - util.c - util.h - win32helper_u8.cpp - win32helper_u8.h - x11util.c - x11util.h -) - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm/WSAAsyncGetAddrInfo.c - ../../teraterm/common/ttcommon.h - ../../teraterm/common/i18n.h - ../../teraterm/common/ttlib.h - ../../teraterm/common/dlglib.h - ../../teraterm/common/servicenames.h - ../../teraterm/common/codeconv.h - ../../teraterm/common/tipwin.h - ../../teraterm/common/compat_win.h - ../../teraterm/common/dllutil.h - ) - -target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/edithistory.cpp - ../../teraterm/common/edithistory.h - ../../teraterm/common/edithistory.rc - ../../teraterm/common/edithistory_res.h -) - -source_group( - "common" - REGULAR_EXPRESSION - "teraterm\/common\/") - -if(MINGW) - target_compile_options( - ${PROJECT_NAME} - PRIVATE - -Wno-error=incompatible-pointer-types - ) -endif(MINGW) - -if(SUPPORT_OLD_WINDOWS) - if(MSVC) - if(${CMAKE_VERSION} VERSION_LESS "3.12.0") - set(CMAKE_C_STANDARD_LIBRARIES "") - set(CMAKE_CXX_STANDARD_LIBRARIES "") - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /NODEFAULTLIB") - else() - target_link_options( - ${PROJECT_NAME} - PRIVATE - /NODEFAULTLIB - ) - endif() - target_sources( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/common/compat_w95_vs2005.c - ) - endif() - if(MINGW) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - -Wl,--whole-archive - mingw_msvcrt - mingw_dll_tls - -Wl,--no-whole-archive - ) - endif() -endif(SUPPORT_OLD_WINDOWS) - -target_include_directories( - ${PROJECT_NAME} - PRIVATE - ../../teraterm/teraterm - ../matcher - ../libsshagentc - ../../libs/include - ${ZLIB_INCLUDE_DIRS} - ) - -if(TTXSSH_LIBRESSL) - target_include_directories( - ${PROJECT_NAME} - PRIVATE - ${LIBRESSL_INCLUDE_DIRS} - ) -elseif(TTXSSH_OPENSSL3) - target_include_directories( - ${PROJECT_NAME} - PRIVATE - ${OPENSSL3_INCLUDE_DIRS} - ) -else() - target_include_directories( - ${PROJECT_NAME} - PRIVATE - ${OPENSSL_INCLUDE_DIRS} - ) -endif() - - -set_target_properties( - ${PROJECT_NAME} - PROPERTIES - PREFIX "" - RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/" - ) - -target_compile_definitions( - ${PROJECT_NAME} - PRIVATE - $<$:_CRTDBG_MAP_ALLOC> -) - -if(MSVC) - target_link_options( - ${PROJECT_NAME} - PRIVATE - /MAP - ) -endif() -if(MINGW) - target_link_options( - ${PROJECT_NAME} - PRIVATE - -Wl,-Map=ttxssh.map,-cref - ) -endif() - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - common_static - libsshagentc - ttpcmn - argon2 -) - -if(TTXSSH_LIBRESSL) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - ${LIBRESSL_LIB} - ) -elseif(TTXSSH_OPENSSL3) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - ${OPENSSL3_LIB} - ) -else() - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - ${OPENSSL_LIB} - ) -endif() -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - ${ZLIB_LIB} -) - -if(SUPPORT_OLD_WINDOWS AND WIN32 AND CMAKE_SIZEOF_VOID_P EQUAL 4) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - layer_for_unicode - libcompatwin - ) -endif() - -if(TTXSSH_LIBRESSL OR TTXSSH_OPENSSL3) - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - bcrypt - ) -else() - # TODO このlibを使用しないパッチを適応したら削除すること - target_link_libraries( - ${PROJECT_NAME} - PRIVATE - crypt32 - ) -endif() - -target_link_libraries( - ${PROJECT_NAME} - PRIVATE - ws2_32 - gdi32 - comdlg32 - comctl32 - ) - -install( - TARGETS ttxssh - RUNTIME - DESTINATION . - ) From 89899490549ccbc0160ed0f69773c80b7f135675 Mon Sep 17 00:00:00 2001 From: Mura Li <2606021+typeless@users.noreply.github.com> Date: Mon, 20 Jul 2026 11:30:05 +0800 Subject: [PATCH 4/6] Phase 5 (4/5): delete the MSVC build scripts Remove the Windows batch scripts that drove the MSVC/CMake build, now replaced by the putup lane: - installer/: release.bat, release_vs2026.bat, build_arch.bat, build_common.bat, collect_files.bat (-> ci_scripts/stage_release.sh), create_package.bat, makelang.bat, codesigning.bat, toolinfo_sample.bat, check_sjis_code.bat, checksymbol/start_checking.bat - libs/: buildall.bat + build{SFMT,libressl,oniguruma6,openssl11,openssl3,zlib}.bat + buildall_cmake.bat + openssl_patch/apply_patch.bat (putup vendors libs via curl) - buildtools/: find_cygwin/find_perl/getcmake/getperl/install_msys2/install_linkchecker.bat, svnrev/svnrev.bat, docker/docker_build.bat - teraterm/susie_plugin/{,extlib/}build_vs2005_win32.bat Kept: install_{cygwin,innosetup,sbapplocale}.bat, doc/makechm.bat + convtext.bat, ci_scripts/find_cmake.bat -- all used by putup-release.yml's packaging. Only explanatory comments in stage_release.sh / a Tupfile still name the old scripts. --- buildtools/docker/docker_build.bat | 10 - buildtools/find_cygwin.bat | 12 - buildtools/find_perl.bat | 30 -- buildtools/getcmake.bat | 10 - buildtools/getperl.bat | 19 - buildtools/install_linkchecker.bat | 13 - buildtools/install_msys2.bat | 12 - buildtools/svnrev/svnrev.bat | 40 -- installer/build_arch.bat | 112 ----- installer/build_common.bat | 164 ------- installer/check_sjis_code.bat | 2 - installer/checksymbol/start_checking.bat | 4 - installer/codesigning.bat | 38 -- installer/collect_files.bat | 143 ------ installer/create_package.bat | 65 --- installer/makelang.bat | 32 -- installer/release.bat | 461 ------------------ installer/release_vs2026.bat | 5 - installer/toolinfo_sample.bat | 19 - libs/buildSFMT.bat | 107 ---- libs/buildall.bat | 23 - libs/buildall_cmake.bat | 93 ---- libs/buildlibressl.bat | 78 --- libs/buildoniguruma6.bat | 79 --- libs/buildopenssl11.bat | 84 ---- libs/buildopenssl3.bat | 35 -- libs/buildzlib.bat | 87 ---- libs/openssl_patch/apply_patch.bat | 162 ------ teraterm/susie_plugin/build_vs2005_win32.bat | 7 - .../extlib/build_vs2005_win32.bat | 4 - 30 files changed, 1950 deletions(-) delete mode 100644 buildtools/docker/docker_build.bat delete mode 100644 buildtools/find_cygwin.bat delete mode 100644 buildtools/find_perl.bat delete mode 100644 buildtools/getcmake.bat delete mode 100644 buildtools/getperl.bat delete mode 100644 buildtools/install_linkchecker.bat delete mode 100644 buildtools/install_msys2.bat delete mode 100644 buildtools/svnrev/svnrev.bat delete mode 100755 installer/build_arch.bat delete mode 100644 installer/build_common.bat delete mode 100644 installer/check_sjis_code.bat delete mode 100644 installer/checksymbol/start_checking.bat delete mode 100644 installer/codesigning.bat delete mode 100755 installer/collect_files.bat delete mode 100644 installer/create_package.bat delete mode 100644 installer/makelang.bat delete mode 100644 installer/release.bat delete mode 100644 installer/release_vs2026.bat delete mode 100644 installer/toolinfo_sample.bat delete mode 100644 libs/buildSFMT.bat delete mode 100644 libs/buildall.bat delete mode 100644 libs/buildall_cmake.bat delete mode 100644 libs/buildlibressl.bat delete mode 100644 libs/buildoniguruma6.bat delete mode 100644 libs/buildopenssl11.bat delete mode 100644 libs/buildopenssl3.bat delete mode 100644 libs/buildzlib.bat delete mode 100644 libs/openssl_patch/apply_patch.bat delete mode 100644 teraterm/susie_plugin/build_vs2005_win32.bat delete mode 100644 teraterm/susie_plugin/extlib/build_vs2005_win32.bat diff --git a/buildtools/docker/docker_build.bat b/buildtools/docker/docker_build.bat deleted file mode 100644 index 5ae91a5e4..000000000 --- a/buildtools/docker/docker_build.bat +++ /dev/null @@ -1,10 +0,0 @@ -setlocal -set CUR=%~dp0 -set PATH=C:\Program Files\Docker\Docker\resources;%PATH% -cd /d %CUR% -docker build --build-arg USER=%USERNAME% -t teraterm_build:1.0 -t teraterm_build:latest . - -set MOUNTS=--mount type=bind,src=%CUR%,dst=/mnt -if exist "%CUR%\..\..\.git" set MOUNTS=%MOUNTS% --mount type=bind,src=%CUR%\..\..,dst=/workspaces/teraterm/teraterm_host -docker run -it --rm %MOUNTS% teraterm_build:latest bash -endlocal diff --git a/buildtools/find_cygwin.bat b/buildtools/find_cygwin.bat deleted file mode 100644 index b18a6e35d..000000000 --- a/buildtools/find_cygwin.bat +++ /dev/null @@ -1,12 +0,0 @@ -rem output -rem CYGWIN_PATH cygwinbintH_ - -if exist "%CYGWIN_PATH%\cygwin1.dll" exit /b 0 -set CYGWIN_PATH=%~dp0..\buildtools\cygwin64\bin -if exist "%CYGWIN_PATH%\cygwin1.dll" exit /b 0 -set CYGWIN_PATH=C:\cygwin64\bin -if exist "%CYGWIN_PATH%\cygwin1.dll" exit /b 0 -set CYGWIN_PATH=C:\cygwin\bin -if exist "%CYGWIN_PATH%\cygwin1.dll" exit /b 0 -set CYGWIN_PATH= -exit /b 0 diff --git a/buildtools/find_perl.bat b/buildtools/find_perl.bat deleted file mode 100644 index 704f6dfd6..000000000 --- a/buildtools/find_perl.bat +++ /dev/null @@ -1,30 +0,0 @@ -if not "%PERL%" == "" exit /b 0 - -if "%PERL_PATH%" == "" goto perl_in_path -set PERL=%PERL_PATH%\perl.exe -if exist "%PERL%" exit /b 0 - -:perl_in_path -set PERL=perl.exe -where %PERL% > nul 2>&1 -if %errorlevel% == 0 exit /b 0 - -set PERL=%~dp0cygwin64\bin\perl.exe -if exist %PERL% exit /b 0 -set PERL=%~dp0perl\perl\bin\perl.exe -if exist %PERL% exit /b 0 -set PERL=C:\Strawberry\perl\bin\perl.exe -if exist %PERL% exit /b 0 -set PERL=C:\Perl64\bin\perl.exe -if exist %PERL% exit /b 0 -set PERL=C:\Perl\bin\perl.exe -if exist %PERL% exit /b 0 -set PERL=C:\cygwin64\bin\perl.exe -if exist %PERL% exit /b 0 -set PERL=C:\cygwin\bin\perl.exe -if exist %PERL% exit /b 0 -set PERL= - -echo perl can not found -if not "%NOPAUSE%" == "1" pause -exit diff --git a/buildtools/getcmake.bat b/buildtools/getcmake.bat deleted file mode 100644 index d4298ece8..000000000 --- a/buildtools/getcmake.bat +++ /dev/null @@ -1,10 +0,0 @@ -@echo off -setlocal -cd /d %~dp0 -IF NOT EXIST cmake-3.11.4-win32-x86 ( - echo cmake_E[hlib/cmakeɓWJ܂ - IF NOT "%1" == "nopause" pause - powershell -NoProfile -ExecutionPolicy Unrestricted .\getcmake.ps1 -) -endlocal -IF NOT "%1" == "nopause" pause diff --git a/buildtools/getperl.bat b/buildtools/getperl.bat deleted file mode 100644 index 7f7017498..000000000 --- a/buildtools/getperl.bat +++ /dev/null @@ -1,19 +0,0 @@ -@echo off -setlocal -cd /d %~dp0 -echo perl_E[hbuildtools/perlɓWJ܂ -pause -IF NOT EXIST "C:\Program Files\CMake\bin" goto by_powershell - -:by_cmake -set PATH=C:\Program Files\CMake\bin;%PATH% -cmake -P getperl.cmake -goto finish - -:by_powershell -powershell -NoProfile -ExecutionPolicy Unrestricted .\getperl.ps1 -goto finish - -:finish -endlocal -pause diff --git a/buildtools/install_linkchecker.bat b/buildtools/install_linkchecker.bat deleted file mode 100644 index a0386dec3..000000000 --- a/buildtools/install_linkchecker.bat +++ /dev/null @@ -1,13 +0,0 @@ -echo %~dp0\install_linkchecker.bat - -pushd %~dp0 - -if "%CMAKE_COMMAND%" == "" ( - call ..\ci_scripts\find_cmake.bat -) - -"%CMAKE_COMMAND%" -P install_linkchecker.cmake - -popd - -if not "%NOPAUSE%" == "1" pause diff --git a/buildtools/install_msys2.bat b/buildtools/install_msys2.bat deleted file mode 100644 index 4025bab57..000000000 --- a/buildtools/install_msys2.bat +++ /dev/null @@ -1,12 +0,0 @@ -echo %~dp0\install_msys2.bat - -pushd %~dp0 - -if "%CMAKE_COMMAND%" == "" ( - call ..\ci_scripts\find_cmake.bat -) -"%CMAKE_COMMAND%" -P install_msys2.cmake - -popd - -if not "%NOPAUSE%" == "1" pause diff --git a/buildtools/svnrev/svnrev.bat b/buildtools/svnrev/svnrev.bat deleted file mode 100644 index 5b9b83873..000000000 --- a/buildtools/svnrev/svnrev.bat +++ /dev/null @@ -1,40 +0,0 @@ -rem @echo off -setlocal -cd /d %~dp0 -set BAT=%~n0%~x0 - -set SVNVERSION_H=../../teraterm/common/svnversion.h -set SVNVERSION_H_DOS=..\..\teraterm\common\svnversion.h -set SVNVERSION_H_OLD=..\..\teraterm\ttpdlg\svnversion.h -set DO_NOT_RUN_SVNREV=do_not_run_svnrev.txt - -if NOT "%1" == "" set ARCHITECTURE=%1 -if "%ARCHITECTURE%" == "" set ARCHITECTURE=Win32 - -if NOT EXIST %SVNVERSION_H% goto env_perl -if NOT EXIST %DO_NOT_RUN_SVNREV% goto env_perl -@echo %BAT%: Find %DO_NOT_RUN_SVNREV%, Do not run svnrev.pl -goto finish - -:env_perl -if NOT "%PERL%" == "" goto found_perl - -:search_perl -call ..\find_perl.bat -if not "%PERL%" == "" goto found_perl - -:no_perl -@echo %BAT%: perl not found -@echo %BAT%: default svnversion.h is used -if exist sourcetree_info.bat del sourcetree_info.bat -type svnversion.default.h > %SVNVERSION_H_DOS% -goto finish - -:found_perl -@echo %BAT%: perl=%PERL% -if EXIST %SVNVERSION_H_OLD% del %SVNVERSION_H_OLD% -%PERL% svnrev.pl --root ../.. --architecture %ARCHITECTURE% --header %SVNVERSION_H% --cmake build_config.cmake --json build_config.json --isl ../../installer/build_config.isl -goto finish - - -:finish diff --git a/installer/build_arch.bat b/installer/build_arch.bat deleted file mode 100755 index 201db52f8..000000000 --- a/installer/build_arch.bat +++ /dev/null @@ -1,112 +0,0 @@ -rem Copyright (C) 2007- Tera Term Project -rem All rights reserved. -rem -rem A[LeN`Ƃ̐ʕrh -setlocal - - -rem architecture for VsDevCmd.bat -if "%TARGET%" == "" (set TARGET=Win32) -if "%TARGET%" == "Win32" (set ARCHITECTURE=x86) -if "%TARGET%" == "x64" (set ARCHITECTURE=x64) -if "%TARGET%" == "ARM64" (set ARCHITECTURE=arm64) -if "%TARGET%" == "ARM64" if "%HOST_ARCHITECTURE%" == "" (set HOST_ARCHITECTURE=amd64) - - -rem build or rebuild -set BUILD_CONF=build -if "%1" == "rebuild" (set BUILD_CONF=rebuild) - - -rem Change the working directory to the location of this BAT file -pushd %~dp0 - - -rem Find Visual Studio -if not "%VSINSTALLDIR%" == "" goto vsinstdir - -:check_2022 -if "%VS170COMNTOOLS%" == "" goto check_2019 -if not exist "%VS170COMNTOOLS%\VsDevCmd.bat" goto novs -call "%VS170COMNTOOLS%\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% -goto vs2022 - -:check_2019 -if "%VS160COMNTOOLS%" == "" goto novs -if not exist "%VS160COMNTOOLS%\VsDevCmd.bat" goto novs -call "%VS160COMNTOOLS%\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% -goto vs2019 - -:vsinstdir -rem Check Visual Studio version -set VSCMNDIR="%VSINSTALLDIR%\Common7\Tools\" -set VSCMNDIR=%VSCMNDIR:\\=\% - -if /I %VSCMNDIR% EQU "%VS180COMNTOOLS%" goto vs2026 -if /I %VSCMNDIR% EQU "%VS170COMNTOOLS%" goto vs2022 -if /I %VSCMNDIR% EQU "%VS160COMNTOOLS%" goto vs2019 - -echo Unknown Visual Studio version -goto fail - -:vs2019 -set TERATERMSLN=..\teraterm\ttermpro.v16.sln -set TTSSHSLN=..\ttssh2\ttssh.v16.sln -set TTPROXYSLN=..\TTProxy\TTProxy.v16.sln -set TTXKANJISLN=..\TTXKanjiMenu\ttxkanjimenu.v16.sln -set TTPMENUSLN=..\ttpmenu\ttpmenu.v16.sln -set TTXSAMPLESLN=..\TTXSamples\TTXSamples.v16.sln -set CYGWINSLN=..\CYGWIN\cygwin.v16.sln -goto vsend - -:vs2022 -set TERATERMSLN=..\teraterm\ttermpro.v17.sln -set TTSSHSLN=..\ttssh2\ttssh.v17.sln -set TTPROXYSLN=..\TTProxy\TTProxy.v17.sln -set TTXKANJISLN=..\TTXKanjiMenu\ttxkanjimenu.v17.sln -set TTPMENUSLN=..\ttpmenu\ttpmenu.v17.sln -set TTXSAMPLESLN=..\TTXSamples\TTXSamples.v17.sln -set CYGWINSLN=..\CYGWIN\cygwin.v17.sln -goto vsend - -:vs2026 -set TERATERMSLN=..\teraterm\ttermpro.v18.slnx -set TTSSHSLN=..\ttssh2\ttssh.v18.slnx -set TTPROXYSLN=..\TTProxy\TTProxy.v18.slnx -set TTXKANJISLN=..\TTXKanjiMenu\ttxkanjimenu.v18.slnx -set TTPMENUSLN=..\ttpmenu\ttpmenu.v18.slnx -set TTXSAMPLESLN=..\TTXSamples\TTXSamples.v18.slnx -set CYGWINSLN=..\CYGWIN\cygwin.v18.slnx -goto vsend - -:vsend - - -rem rWωĂ svnversion.h XVB -call ..\buildtools\svnrev\svnrev.bat - - -devenv /%BUILD_CONF% "Release|%TARGET%" %TERATERMSLN% -if ERRORLEVEL 1 goto fail -devenv /%BUILD_CONF% "Release|%TARGET%" %TTSSHSLN% -if ERRORLEVEL 1 goto fail -devenv /%BUILD_CONF% "Release|%TARGET%" %TTPROXYSLN% -if ERRORLEVEL 1 goto fail -devenv /%BUILD_CONF% "Release|%TARGET%" %TTXKANJISLN% -if ERRORLEVEL 1 goto fail -devenv /%BUILD_CONF% "Release|%TARGET%" %TTPMENUSLN% -if ERRORLEVEL 1 goto fail -devenv /%BUILD_CONF% "Release|%TARGET%" %TTXSAMPLESLN% -if ERRORLEVEL 1 goto fail -devenv /%BUILD_CONF% "Release|%TARGET%" %CYGWINSLN% -if ERRORLEVEL 1 goto fail - -popd -endlocal -exit /b 0 - - -:fail -popd -endlocal -exit /b 1 diff --git a/installer/build_common.bat b/installer/build_common.bat deleted file mode 100644 index 67f1381fe..000000000 --- a/installer/build_common.bat +++ /dev/null @@ -1,164 +0,0 @@ -rem Copyright (C) 2025- Tera Term Project -rem All rights reserved. -rem -rem ʂ̐ʕrh -rem chm ... HTML help -rem cygtool.dll ... Inno Setup Ăяô x86 -rem cygterm.exe ... Cygwin 64bit (x64) ɈˑĂ̂ x64 -rem cygtoo.dll ... MSYS2 64bit Ȃ̂ x64 -rem cygterm.+.tar.gz -rem lang_utf8 lng t@C lang_utf16le lang ɕϊ -rem -rem ʕ͂ɂ܂Ƃ߂ -rem - Output/build/teraterm_common -setlocal - - -rem TARGET for package -rem build_common.bat ł Win32 g -set TARGET=Win32 - - -rem architecture for VsDevCmd.bat -rem build_common.bat ł x86 g -set ARCHITECTURE=x86 - - -rem build or rebuild -set BUILD_CONF=build -if "%1" == "rebuild" (set BUILD_CONF=rebuild) - - -rem Change the working directory to the location of this BAT file -pushd %~dp0 - - -rem Build HTML help -pushd ..\doc -CALL makechm.bat -popd - - -rem Find Visual Studio -if not "%VSINSTALLDIR%" == "" goto vsinstdir - -:check_2022 -if "%VS170COMNTOOLS%" == "" goto check_2019 -if not exist "%VS170COMNTOOLS%\VsDevCmd.bat" goto novs -call "%VS170COMNTOOLS%\VsDevCmd.bat" -arch=%ARCHITECTURE% -goto vs2022 - -:check_2019 -if "%VS160COMNTOOLS%" == "" goto novs -if not exist "%VS160COMNTOOLS%\VsDevCmd.bat" goto novs -call "%VS160COMNTOOLS%\VsDevCmd.bat" -arch=%ARCHITECTURE% -goto vs2019 - -:vsinstdir -rem Check Visual Studio version -set VSCMNDIR="%VSINSTALLDIR%\Common7\Tools\" -set VSCMNDIR=%VSCMNDIR:\\=\% - -if /I %VSCMNDIR% EQU "%VS180COMNTOOLS%" goto vs2026 -if /I %VSCMNDIR% EQU "%VS170COMNTOOLS%" goto vs2022 -if /I %VSCMNDIR% EQU "%VS160COMNTOOLS%" goto vs2019 - -echo Unknown Visual Studio version -goto fail - -:vs2019 -set TERATERMSLN=..\teraterm\ttermpro.v16.sln -set CYGWINSLN=..\CYGWIN\cygwin.v16.sln -goto vsend - -:vs2022 -set TERATERMSLN=..\teraterm\ttermpro.v17.sln -set CYGWINSLN=..\CYGWIN\cygwin.v17.sln -goto vsend - -:vs2026 -set TERATERMSLN=..\teraterm\ttermpro.v18.slnx -set CYGWINSLN=..\CYGWIN\cygwin.v18.slnx -goto vsend - -:vsend - -rem Build cygtool.dll -devenv /%BUILD_CONF% "Release|%TARGET%" /project common_static %TERATERMSLN% -if ERRORLEVEL 1 goto fail -devenv /%BUILD_CONF% "Release|%TARGET%" /project cygtool %CYGWINSLN% -if ERRORLEVEL 1 goto fail - - -rem Compile cygterm.exe -pushd ..\cygwin\cygterm -if "%BUILD_CONF%" == "rebuild" ( - make clean - make cygterm+-x86_64-clean -) -make cygterm+-x86_64 -j -popd - - -rem Compile msys2term.exe -if not exist c:\msys64\usr\bin\msys-2.0.dll goto msys2term_pass -setlocal -PATH=C:\msys64\usr\bin -pushd ..\cygwin\cygterm -if "%BUILD_CONF%" == "rebuild" ( - make clean - make msys2term-clean -) -make msys2term -j -endlocal -popd -:msys2term_pass - - -rem Compress cygterm+.tar.gz -pushd ..\cygwin\cygterm -make archive -popd - - -rem Convert lng files -call makelang.bat - - -set dst=%~dp0Output\build\teraterm_common -echo dst=%dst% - -rem t@C %dst% ɃRs[ -del /s /q %dst%\*.* -mkdir %dst% - -copy /y ..\doc\ja\teratermj.chm %dst% -copy /y ..\doc\en\teraterm.chm %dst% - -copy /y ..\cygwin\Release.%TARGET%\cygtool.dll %dst% - -copy /y ..\cygwin\cygterm\cygterm.cfg %dst% -copy /y "..\cygwin\cygterm\cygterm+.tar.gz" %dst% -copy /y "..\cygwin\cygterm\cygterm+-x86_64\cygterm.exe" %dst% - -if not exist ..\cygwin\cygterm\msys2term\msys2term.exe goto msys2term_pass -copy /y ..\cygwin\cygterm\msys2term\msys2term.exe %dst% -copy /y ..\cygwin\cygterm\msys2term.cfg %dst% -:msys2term_pass - -mkdir %dst%\lang -mkdir %dst%\lang_utf16le -xcopy /s /e /y /i /exclude:archive-exclude.txt release\lang %dst%\lang -xcopy /s /e /y /i /exclude:archive-exclude.txt release\lang_utf16le %dst%\lang_utf16le -del /f %dst%\lang\en_US.lng - - -popd -endlocal -exit /b 0 - - -:fail -popd -endlocal -exit /b 1 diff --git a/installer/check_sjis_code.bat b/installer/check_sjis_code.bat deleted file mode 100644 index 838192d6e..000000000 --- a/installer/check_sjis_code.bat +++ /dev/null @@ -1,2 +0,0 @@ -perl check_sjis_code.pl > result.txt -rem pause diff --git a/installer/checksymbol/start_checking.bat b/installer/checksymbol/start_checking.bat deleted file mode 100644 index 30fa72b6f..000000000 --- a/installer/checksymbol/start_checking.bat +++ /dev/null @@ -1,4 +0,0 @@ - -perl check_symbol.pl %1 > result.txt - -pause \ No newline at end of file diff --git a/installer/codesigning.bat b/installer/codesigning.bat deleted file mode 100644 index 65c7fc981..000000000 --- a/installer/codesigning.bat +++ /dev/null @@ -1,38 +0,0 @@ -@echo off - -rem -rem OpenSSL + signtool gāAIIR[hTCjOؖt^B -rem - -if "%1"=="/?" goto help -if "%1"=="" goto help - -SET EXEFILE="%1" -SET OPENSSL=..\libs\openssl\out32\openssl.exe -SET SSLCONF=..\libs\openssl\apps\openssl.cnf -SET PASSWD="teraterm" -SET DAYS=365 -SET PRIVKEY=cakey.pem -SET CERTKEY=cacert.pem -SET PFXKEY=certificate.pfx -SET TIMESERV=http://www.trustcenter.de/codesigning/timestamp -rem SET TIMESERV=http://timestamp.verisign.com/scripts/timstamp.dll - -rem SSLؖƔ閧쐬B - -del /q %PRIVKEY% %CERTKEY% %PFXKEY% -echo pXt[Y %PASSWD% Ă - -%openssl% req -new -x509 -keyout %PRIVKEY% -out %CERTKEY% -days %DAYS% -config %SSLCONF% -%openssl% pkcs12 -export -out %PFXKEY% -inkey %PRIVKEY% -in %CERTKEY% -signtool sign /f %PFXKEY% /a /t %TIMESERV% /p %PASSWD% %EXEFILE% - -exit /b - -:help -echo OpenSSL + signtool gāAIIR[hTCjOؖt^B -echo. -echo Usage: -echo %0 Output\teraterm-4.72-RC1.exe -exit /b - diff --git a/installer/collect_files.bat b/installer/collect_files.bat deleted file mode 100755 index a46fce317..000000000 --- a/installer/collect_files.bat +++ /dev/null @@ -1,143 +0,0 @@ -rem Copyright (C) 2006- Tera Term Project -rem All rights reserved. -rem -rem - build_common.bat ŃrhꂽoCiiOutput/build/teraterm_common փRs[ς݁j -rem - build_arch.bat ŃrhꂽoCi -rem ̃tH_ɂ܂Ƃ߂ -rem - Output/build/teraterm-%arch% -rem - Output/build/teraterm-%arch%_pdb -setlocal - - -rem arch for package -if "%arch%" == "" (set arch=x86) - - -rem TARGET for package -if "%TARGET%" == "" (set TARGET=Win32) - - -rem Change the working directory to the location of this BAT file -pushd %~dp0 - - -if not exist Output mkdir Output -if not exist Output\build mkdir Output\build - -set common=%~dp0Output\build\teraterm_common -set dst=%~dp0Output\build\teraterm-%arch% -echo dst=%dst% - - -rem t@C %dst%, %dist%_pdb ɃRs[ -del /s /q %dst%\*.* -mkdir %dst% -del /s /q %dst%_pdb\*.* -mkdir %dst%_pdb - -copy /y ..\teraterm\Release.%TARGET%\*.exe %dst% -copy /y ..\teraterm\Release.%TARGET%\*.dll %dst% -copy /y ..\teraterm\Release.%TARGET%\*.pdb %dst%_pdb -copy /y ..\ttssh2\ttxssh\Release.%TARGET%\ttxssh.dll %dst% -copy /y ..\ttssh2\ttxssh\Release.%TARGET%\ttxssh.pdb %dst%_pdb -copy /y ..\TTProxy\Release.%TARGET%\TTXProxy.dll %dst% -copy /y ..\TTProxy\Release.%TARGET%\TTXProxy.pdb %dst%_pdb -copy /y ..\TTXKanjiMenu\Release.%TARGET%\ttxkanjimenu.dll %dst% -copy /y ..\TTXKanjiMenu\Release.%TARGET%\ttxkanjimenu.pdb %dst%_pdb - -copy /y ..\cygwin\Release.%TARGET%\cyglaunch.exe %dst% - -copy /y %common%\cygterm.cfg %dst% -copy /y "%common%\cygterm+.tar.gz" %dst% -copy /y "%common%\cygterm.exe" %dst% - -if not exist %common%\msys2term.exe goto msys2term_pass -copy /y %common%\msys2term.exe %dst% -copy /y %common%\msys2term.cfg %dst% -:msys2term_pass - -copy /y ..\ttpmenu\Release.%TARGET%\ttpmenu.exe %dst% -copy /y ..\ttpmenu\Release.%TARGET%\ttpmenu.pdb %dst%_pdb -copy /y ..\ttpmenu\readme.txt %dst%\ttmenu_readme-j.txt - -copy /y ..\TTXSamples\Release.%TARGET%\TTXAlwaysOnTop.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXAlwaysOnTop.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXCallSysMenu.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXCallSysMenu.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXCommandLineOpt.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXCommandLineOpt.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXCopyIniFile.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXCopyIniFile.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXFixedWinSize.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXFixedWinSize.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXKcodeChange.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXKcodeChange.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXOutputBuffering.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXOutputBuffering.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXRecurringCommand.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXRecurringCommand.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXResizeMenu.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXResizeMenu.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXResizeWin.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXResizeWin.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXShowCommandLine.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXShowCommandLine.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXViewMode.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXViewMode.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXtest.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXtest.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXttyplay.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXttyplay.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXttyrec.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXttyrec.pdb %dst%_pdb -copy /y ..\TTXSamples\Release.%TARGET%\TTXChangeFontSize.dll %dst% -copy /y ..\TTXSamples\Release.%TARGET%\TTXChangeFontSize.pdb %dst%_pdb - -pushd %dst% -ren TTXFixedWinSize.dll _TTXFixedWinSize.dll -ren TTXFixedWinSize.dll _TTXFixedWinSize.dll -ren TTXOutputBuffering.dll _TTXOutputBuffering.dll -ren TTXResizeWin.dll _TTXResizeWin.dll -ren TTXResizeWin.dll _TTXResizeWin.dll -ren TTXShowCommandLine.dll _TTXShowCommandLine.dll -ren TTXtest.dll _TTXtest.dll -popd - -copy /y %common%\teratermj.chm %dst% -copy /y %common%\teraterm.chm %dst% - -copy /y release\*.* %dst% -copy /y release\IBMKEYB.CNF %dst%\KEYBOARD.CNF -xcopy /s /e /y /i /exclude:archive-exclude.txt release\theme %dst%\theme -xcopy /s /e /y /i /exclude:archive-exclude.txt release\plugin %dst%\plugin -xcopy /s /e /y /i /exclude:archive-exclude.txt %common%\lang %dst%\lang -xcopy /s /e /y /i /exclude:archive-exclude.txt %common%\lang_utf16le %dst%\lang_utf16le -del /f %dst%\lang\en_US.lng - -perl setini.pl release\TERATERM.INI > %dst%\TERATERM.INI - -copy nul %dst%\ttpmenu.ini -copy nul %dst%\portable.ini - -popd -exit /b 0 - -:help -echo. -echo ex -echo %0 rebuild ^>build.log 2^>^&1 rhO̎悷(Retrieve building log) -echo. -popd -endlocal -exit /b 0 - -:fail -@echo off -echo =================================================== -echo ================= E R R O R ======================= -echo =================================================== -echo. -echo rhɎs܂ (Failed to build source code) -popd -endlocal -exit /b 1 diff --git a/installer/create_package.bat b/installer/create_package.bat deleted file mode 100644 index 63237e384..000000000 --- a/installer/create_package.bat +++ /dev/null @@ -1,65 +0,0 @@ -@rem CXg[,zip쐬 -@rem test -@rem release.batsA -@rem 7. exec cmd.exe IłgpƁAbateXgł܂ -setlocal - - -rem arch for package -if "%arch%" == "" (set arch=x86) - - -rem Change the working directory to the location of this BAT file -cd /d %~dp0 - - -if not exist Output mkdir Output -if not exist Output\portable mkdir Output\portable - -SET VCSVERSION=%GITVERSION% -IF NOT "%SVNVERSION%" == "unknown" ( - SET VCSVERSION=r%SVNVERSION% -) - -set SNAPSHOT_OUTPUT=teraterm-%VERSION%-%arch%-%DATE%_%TIME%-%VCSVERSION%-%USERNAME%-snapshot -set RELEASE_OUTPUT=teraterm-%VERSION%-%arch% -if "%RELEASE%" == "1" ( - set OUTPUT=%RELEASE_OUTPUT% -) else ( - set OUTPUT=%SNAPSHOT_OUTPUT% -) - -rem |[^ułRs[ĎĂ(Ɏgp) -%CMAKE% -E rm -rf Output/portable/teraterm-%arch% -%CMAKE% -E copy_directory Output/build/teraterm-%arch% Output/portable/teraterm-%arch% - - -rem (Ȃ)CXg[쐬 -set INNO_SETUP_OUTPUT="/DOutputBaseFilename=%OUTPUT%" -if "%RELEASE%" == "1" ( - set INNO_SETUP_APPVERSION="/DAppVersion=%VERSION%" -) else ( - set INNO_SETUP_APPVERSION="/DAppVersion=%VERSION% %DATE%_%TIME%-%VCSVERSION%" -) -set INNO_SETUP_ARCH="/DArch=x86" -if "%arch%" == "x64" (set INNO_SETUP_ARCH=/DArch=%arch%) -if "%arch%" == "arm64" (set INNO_SETUP_ARCH=/DArch=%arch%) -%INNO_SETUP% %INNO_SETUP_APPVERSION% /OOutput %INNO_SETUP_OUTPUT% /DSrcDir=Output\build\teraterm-%arch% %INNO_SETUP_ARCH% teraterm.iss - -rem (Ȃ)|[^ułzip쐬 -pushd Output -%CMAKE% -E rm -rf %OUTPUT% -%CMAKE% -E rm -rf %OUTPUT%_pdb -%CMAKE% -E copy_directory build\teraterm-%arch% %OUTPUT% -%CMAKE% -E copy_directory build\teraterm-%arch%_pdb %OUTPUT%_pdb -%CMAKE% -E tar cf %OUTPUT%.zip --format=zip %OUTPUT%/ -%CMAKE% -E tar cf %OUTPUT%_pdb.zip --format=zip %OUTPUT%_pdb/ -popd - -rem nbV쐬 -pushd Output -%CMAKE% -E sha256sum %OUTPUT%.exe %OUTPUT%.zip %OUTPUT%_pdb.zip > %OUTPUT%.sha256sum -%CMAKE% -E sha512sum %OUTPUT%.exe %OUTPUT%.zip %OUTPUT%_pdb.zip > %OUTPUT%.sha512sum -popd - -endlocal diff --git a/installer/makelang.bat b/installer/makelang.bat deleted file mode 100644 index 1addafcb7..000000000 --- a/installer/makelang.bat +++ /dev/null @@ -1,32 +0,0 @@ - -if not exist release\lang_utf16le mkdir release\lang_utf16le -perl utf8_to.pl utf16le release/lang_utf8/Default.lng release/lang_utf16le/Default.lng -perl utf8_to.pl utf16le release/lang_utf8/en_US.lng release/lang_utf16le/en_US.lng -perl utf8_to.pl utf16le release/lang_utf8/fr_FR.lng release/lang_utf16le/fr_FR.lng -perl utf8_to.pl utf16le release/lang_utf8/de_DE.lng release/lang_utf16le/de_DE.lng -perl utf8_to.pl utf16le release/lang_utf8/ja_JP.lng release/lang_utf16le/ja_JP.lng -perl utf8_to.pl utf16le release/lang_utf8/ko_KR.lng release/lang_utf16le/ko_KR.lng -perl utf8_to.pl utf16le release/lang_utf8/ru_RU.lng release/lang_utf16le/ru_RU.lng -perl utf8_to.pl utf16le "release/lang_utf8/zh_CN.lng" "release/lang_utf16le/zh_CN.lng" -perl utf8_to.pl utf16le release/lang_utf8/es_ES.lng release/lang_utf16le/es_ES.lng -perl utf8_to.pl utf16le "release/lang_utf8/zh_TW.lng" "release/lang_utf16le/zh_TW.lng" -perl utf8_to.pl utf16le "release/lang_utf8/ta_IN.lng" "release/lang_utf16le/ta_IN.lng" -perl utf8_to.pl utf16le "release/lang_utf8/pt_BR.lng" "release/lang_utf16le/pt_BR.lng" -perl utf8_to.pl utf16le "release/lang_utf8/it_IT.lng" "release/lang_utf16le/it_IT.lng" -perl utf8_to.pl utf16le "release/lang_utf8/tr_TR.lng" "release/lang_utf16le/tr_TR.lng" - -if not exist release\lang mkdir release\lang -perl utf8_to.pl cp1252 release/lang_utf8/Default.lng release/lang/Default.lng -perl utf8_to.pl cp1252 release/lang_utf8/en_US.lng release/lang/en_US.lng -perl utf8_to.pl cp1252 release/lang_utf8/fr_FR.lng release/lang/fr_FR.lng -perl utf8_to.pl cp1252 release/lang_utf8/de_DE.lng release/lang/de_DE.lng -perl utf8_to.pl cp932 release/lang_utf8/ja_JP.lng release/lang/ja_JP.lng -perl utf8_to.pl cp949 release/lang_utf8/ko_KR.lng release/lang/ko_KR.lng -perl utf8_to.pl windows-1251 release/lang_utf8/ru_RU.lng release/lang/ru_RU.lng -perl utf8_to.pl cp936 "release/lang_utf8/zh_CN.lng" "release/lang/zh_CN.lng" -perl utf8_to.pl cp1252 release/lang_utf8/es_ES.lng release/lang/es_ES.lng -perl utf8_to.pl cp950 "release/lang_utf8/zh_TW.lng" "release/lang/zh_TW.lng" -perl utf8_to.pl cp65001 release/lang_utf8/ta_IN.lng release/lang/ta_IN.lng -perl utf8_to.pl cp1252 "release/lang_utf8/pt_BR.lng" "release/lang/pt_BR.lng" -perl utf8_to.pl cp1252 "release/lang_utf8/it_IT.lng" "release/lang/it_IT.lng" -perl utf8_to.pl cp1254 "release/lang_utf8/tr_TR.lng" "release/lang/tr_TR.lng" diff --git a/installer/release.bat b/installer/release.bat deleted file mode 100644 index cc5783740..000000000 --- a/installer/release.bat +++ /dev/null @@ -1,461 +0,0 @@ -@echo off -setlocal -set CUR=%~dp0 -cd /d %CUR% - -rem 2026 (v18) -rem if "%VS_VERSION%" == "" set VS_VERSION=18 -rem 2022 -if "%VS_VERSION%" == "" set VS_VERSION=2022 - -if "%APPVEYOR%" == "True" set NOPAUSE=1 -if exist ..\buildtools\svnrev\sourcetree_info.bat del ..\buildtools\svnrev\sourcetree_info.bat - -call :setup_tools_env - -echo ======= -echo 1. force download and rebuild libs / rebuild Tera Term, installer, zip -echo 2. download and build libs / rebuild Tera Term, installer, zip -echo 3. download and build libs / build Tera Term, installer, zip -echo 4. download and build libs -echo 5. build libs / rebuild Tera Term, installer, zip -echo 6. build libs / build Tera Term, installer, zip -echo 7. exec cmd.exe -echo 8. check tools -echo 9. exit -echo 10. for multi-stage build stage 0: download libs -echo 11. for multi-stage build stage 1: rebuild common -echo 12. for multi-stage build stage 2: build libs / rebuild arch, installer, zip -echo 13. for multi-stage build stage 1: build common -echo 14. for multi-stage build stage 2: build libs / build arch, installer, zip - -if "%1" == "" ( - set /p no="select no " -) else ( - set no=%1 -) -echo %no% - -if "%no%" == "1" ( - call :download_libs force - call :build_libs - call :build_teraterm rebuild -) - -if "%no%" == "2" ( - call :download_libs - call :build_libs - call :build_teraterm rebuild -) - -if "%no%" == "3" ( - call :download_libs - call :build_libs - call :build_teraterm -) - -if "%no%" == "4" ( - call :download_libs - call :build_libs -) - -if "%no%" == "5" ( - call :build_libs - call :build_teraterm rebuild -) - -if "%no%" == "6" ( - call :build_libs - call :build_teraterm -) - -if "%no%" == "7" ( - call :exec_cmd -) - -if "%no%" == "8" ( - call :check_tools -) - -if "%no%" == "10" ( - call :download_libs -) - -if "%no%" == "11" ( - call :download_libs - call :build_teraterm_1 rebuild -) - -if "%no%" == "12" ( - call :download_libs - call :build_libs - call :build_teraterm_2 rebuild -) - -if "%no%" == "13" ( - call :download_libs - call :build_teraterm_1 -) - -if "%no%" == "14" ( - call :download_libs - call :build_libs - call :build_teraterm_2 -) - -if not "%NOPAUSE%" == "1" pause -endlocal -exit /b 0 - - -rem #################### -:download_libs - -setlocal -cd /d %CUR%..\libs - -set OPT= -if "%1" == "force" set OPT=-DFORCE_DOWNLOAD=on -%CMAKE% %OPT% -P download.cmake -if errorlevel 1 ( - echo download error - endlocal - exit 1 -) - -endlocal -exit /b 0 - -rem #################### -:build_libs - -setlocal -cd /d %CUR%..\libs -call buildall.bat -endlocal -exit /b 0 - -rem #################### -:build_teraterm - -setlocal -cd /d %CUR% -call ..\buildtools\svnrev\svnrev.bat -call ..\buildtools\svnrev\sourcetree_info.bat - -if "%RELEASE%" == "1" ( - call build_common.bat rebuild -) else if "%1" == "rebuild" ( - call build_common.bat rebuild -) else ( - call build_common.bat -) -if ERRORLEVEL 1 ( - echo ERROR call build_common.bat - endlocal - exit /b 1 -) -if "%RELEASE%" == "1" ( - call build_arch.bat rebuild -) else if "%1" == "rebuild" ( - call build_arch.bat rebuild -) else ( - call build_arch.bat -) -if ERRORLEVEL 1 ( - echo ERROR call build_arch.bat - endlocal - exit /b 1 -) -call collect_files.bat -if ERRORLEVEL 1 ( - echo ERROR call collect_files.bat - endlocal - exit /b 1 -) -call create_package.bat -if ERRORLEVEL 1 ( - echo ERROR call create_package.bat - endlocal - exit /b 1 -) - -endlocal -exit /b 0 - -rem #################### -rem stage 1 -:build_teraterm_1 - -setlocal -cd /d %CUR% -call ..\buildtools\svnrev\svnrev.bat -call ..\buildtools\svnrev\sourcetree_info.bat - -if "%RELEASE%" == "1" ( - call build_common.bat rebuild -) else if "%1" == "rebuild" ( - call build_common.bat rebuild -) else ( - call build_common.bat -) -if ERRORLEVEL 1 ( - echo ERROR call build_common.bat - endlocal - exit /b 1 -) - -endlocal -exit /b 0 - -rem #################### -rem stage 2 -:build_teraterm_2 - -setlocal -cd /d %CUR% -call ..\buildtools\svnrev\svnrev.bat -call ..\buildtools\svnrev\sourcetree_info.bat - -if ERRORLEVEL 1 ( - echo ERROR call build_common.ba - endlocal - exit /b 1 -) -if "%RELEASE%" == "1" ( - call build_arch.bat rebuild -) else if "%1" == "rebuild" ( - call build_arch.bat rebuild -) else ( - call build_arch.bat -) -if ERRORLEVEL 1 ( - echo ERROR call build_arch.bat - endlocal - exit /b 1 -) -call collect_files.bat -if ERRORLEVEL 1 ( - echo ERROR call collect_files.bat - endlocal - exit /b 1 -) -call create_package.bat -if ERRORLEVEL 1 ( - echo ERROR call create_package.bat - endlocal - exit /b 1 -) - -endlocal -exit /b 0 - -rem #################### -:setup_tools_env - -if exist toolinfo.bat ( - echo found toolinfo.bat - call toolinfo.bat - echo toolinfo.bat ok -) - -call %CUR%..\buildtools\find_cygwin.bat -if not "%CYGWIN_PATH%" == "" goto cygwin_path_pass -echo cygwin not found -if not "%NOPAUSE%" == "1" pause -exit -:cygwin_path_pass - -set VS_BASE=C:\Program Files\Microsoft Visual Studio\%VS_VERSION% -if exist "%VS_BASE%" goto vs_base_pass -set VS_BASE=C:\Program Files (x86)\Microsoft Visual Studio\%VS_VERSION% -:vs_base_pass - -if not exist toolinfo.bat ( - set PATH= -) - -set PATH=%SystemRoot%;%PATH% -set PATH=%SystemRoot%\system32;%PATH% -call :search_perl -rem call :search_svn -call :search_git -call :search_iscc -rem set PATH=%SVN_PATH%;%PATH% -set PATH=%GIT_PATH%;%PATH% -set PATH=%PERL_PATH%;%PATH% -call :set_vs_env -call :search_cmake -set PATH=%CMAKE_PATH%;%PATH% -set PATH=%PATH%;%CYGWIN_PATH% -exit /b 0 - -rem #################### -:search_perl -call %CUR%..\buildtools\find_perl.bat -exit /b - -rem #################### -rem :search_svn -rem if exist %SVN_PATH%\svn.exe ( -rem set SVN=%SVN_PATH%\svn.exe -rem exit /b 0 -rem ) -rem -rem set SVN=svn.exe -rem where %SVN% > nul 2>&1 -rem if %errorlevel% == 0 exit /b 0 -rem set SVN_PATH=C:\Program Files (x86)\Subversion\bin -rem set SVN="%SVN_PATH%\svn.exe" -rem if exist %SVN% exit /b 0 -rem set SVN_PATH=C:\Program Files\TortoiseSVN\bin -rem set SVN="%SVN_PATH%\svn.exe" -rem if exist %SVN% exit /b 0 -rem echo svn not found -rem if not "%NOPAUSE%" == "1" pause -rem exit - -rem #################### -:search_git -if exist %GIT_PATH%\git.exe ( - set GIT=%GIT_PATH%\git.exe - exit /b 0 -) - -set GIT=git.exe -where %GIT% > nul 2>&1 -if %errorlevel% == 0 exit /b 0 -set GIT_PATH=C:\Program Files\Git\cmd -set GIT="%GIT_PATH%\git.exe" -if exist %GIT% exit /b 0 -set GIT_PATH=C:\Program Files (x86)\Git\cmd -set GIT="%GIT_PATH%\git.exe" -if exist %GIT% exit /b 0 -echo git not found -if not "%NOPAUSE%" == "1" pause -exit - -rem #################### -:search_cmake -if exist %CMAKE_PATH%\cmake.exe ( - set CMAKE="%CMAKE_PATH%\cmake.exe" - exit /b 0 -) -if "%CMAKE%" == "" set CMAKE="cmake.exe" - -where %CMAKE% > nul 2>&1 -if %errorlevel% == 0 exit /b 0 -set CMAKE_PATH=C:\Program Files\CMake\bin -set CMAKE="%CMAKE_PATH%\cmake.exe" -if exist %CMAKE% exit /b 0 -set CMAKE_PATH=%VCINSTALLDIR%\..\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin -set CMAKE="%CMAKE_PATH%\cmake.exe" -if exist %CMAKE% exit /b 0 -echo cmake not found -if not "%NOPAUSE%" == "1" pause -exit - -rem #################### -:search_iscc -if [%INNO_SETUP%] == [] goto search_iscc_1 -if exist %INNO_SETUP% ( - exit /b 0 -) -echo INNO_SETUP=%INNO_SETUP% -goto search_iscc_not_found - -:search_iscc_1 -set INNO_SETUP=%CUR%..\buildtools\innosetup6\ISCC.exe -if exist %INNO_SETUP% exit /b 0 -set INNO_SETUP="C:\Program Files (x86)\Inno Setup 6\iscc.exe" -if exist %INNO_SETUP% exit /b 0 -:search_iscc_not_found -echo iscc(inno setup) not found -if not "%NOPAUSE%" == "1" pause -exit - -rem #################### -:set_vs_env - -rem architecture for VsDevCmd.bat -if "%TARGET%" == "" (set TARGET=Win32) -if "%TARGET%" == "Win32" (set ARCHITECTURE=x86) -if "%TARGET%" == "x64" (set ARCHITECTURE=x64) -if "%TARGET%" == "ARM64" (set ARCHITECTURE=arm64) -if "%TARGET%" == "ARM64" if "%HOST_ARCHITECTURE%" == "" (set HOST_ARCHITECTURE=amd64) - -rem libs\buildxxx.bat ł %VSxxxCOMNTOOLS% TĂ邪AႢ͂Ȃ͂ -if exist "%VS_BASE%\Community" ( - call "%VS_BASE%\Community\Common7\Tools\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% - exit /b 0 -) -if exist "%VS_BASE%\Professional" ( - call "%VS_BASE%\Profssional\Common7\Tools\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% - exit /b 0 -) -if exist "%VS_BASE%\Enterprise" ( - call "%VS_BASE%\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% - exit /b 0 -) -:vs_not_found -echo Visual Studio not found -echo VS_BASE=%VS_BASE% -if not "%NOPAUSE%" == "1" pause -exit - -rem #################### -:exec_cmd -call ..\buildtools\svnrev\svnrev.bat -call ..\buildtools\svnrev\sourcetree_info.bat -cmd -exit /b 0 - -rem #################### -:check_tools - -echo cmd(windows) -ver - -echo Visual Studio -echo VS_BASE=%VS_BASE% -cl - -rem echo svn -rem where svn -rem echo SVN_PATH=%SVN_PATH% -rem echo SVN=%SVN% -rem svn --version - -echo git -where git -echo GIT_PATH=%GIT_PATH% -echo GIT=%GIT% -%GIT% --version - -echo perl -where perl -echo PERL_PATH=%PERL_PATH% -echo PERL=%PERL% -%PERL% --version - -echo cmake -where cmake -echo CMAKE_PATH=%CMAKE_PATH% -echo CMAKE=%CMAKE% -%CMAKE% --version - -echo cygwin -echo CYGWIN_PATH=%CYGWIN_PATH% -%CYGWIN_PATH%\cygcheck -c base-cygwin -%CYGWIN_PATH%\cygcheck -c gcc-core -%CYGWIN_PATH%\cygcheck -c w32api-headers -%CYGWIN_PATH%\cygcheck -c make - -echo inno setup -echo INNO_SETUP=%INNO_SETUP% -%INNO_SETUP% /? - -echo PATH -echo %PATH% - -exit /b 0 diff --git a/installer/release_vs2026.bat b/installer/release_vs2026.bat deleted file mode 100644 index a2e4038ca..000000000 --- a/installer/release_vs2026.bat +++ /dev/null @@ -1,5 +0,0 @@ -@echo off -setlocal -set VS_VERSION=18 -call release.bat -endlocal diff --git a/installer/toolinfo_sample.bat b/installer/toolinfo_sample.bat deleted file mode 100644 index 002a0286e..000000000 --- a/installer/toolinfo_sample.bat +++ /dev/null @@ -1,19 +0,0 @@ -rem toolinfo.bat -rem sample - -rem KvȂpath̐ݒ폜s -rem set PATH= - -rem ec[ւ̃pXȂǂw肷 -rem set PERL_PATH=C:\Strawberry\perl\bin -rem set SVN_PATH=C:\Program Files (x86)\Subversion\bin -rem set GIT_PATH=C:\Program Files\Git\cmd -rem set VS_BASE=C:\Program Files\Microsoft Visual Studio\2022 -rem set CMAKE_PATH=C:\Program Files\CMake\bin -rem set CURL=C:\Windows\System32\curl.exe -rem set CYGWIN_PATH=%~dp0..\buildtools\cygwin64\bin -rem set CYGWIN_PATH=C:\cygwin64\bin -rem set INNO_SETUP="C:\Program Files (x86)\Inno Setup 6\iscc.exe" - -rem release.bat ւ̎w -rem set NOPAUSE=0 diff --git a/libs/buildSFMT.bat b/libs/buildSFMT.bat deleted file mode 100644 index 96f4744ad..000000000 --- a/libs/buildSFMT.bat +++ /dev/null @@ -1,107 +0,0 @@ -rem Build SFMT -setlocal - -pushd SFMT - - -SET filename=SFMT_version_for_teraterm.h - - -rem architecture for VsDevCmd.bat -if "%TARGET%" == "" (set TARGET=Win32) -if "%TARGET%" == "Win32" (set ARCHITECTURE=x86) -if "%TARGET%" == "x64" (set ARCHITECTURE=x64) -if "%TARGET%" == "ARM64" (set ARCHITECTURE=arm64) -if "%TARGET%" == "ARM64" if "%HOST_ARCHITECTURE%" == "" (set HOST_ARCHITECTURE=amd64) - - -rem Find Visual Studio -if not "%VSINSTALLDIR%" == "" goto vsinstdir - -:check_2019 -if "%VS160COMNTOOLS%" == "" goto check_2022 -if not exist "%VS160COMNTOOLS%\VsDevCmd.bat" goto check_2022 -call "%VS160COMNTOOLS%\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% -goto generate - -:check_2022 -if "%VS170COMNTOOLS%" == "" goto novs -if not exist "%VS170COMNTOOLS%\VsDevCmd.bat" goto novs -call "%VS170COMNTOOLS%\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% -goto generate - -:novs -echo "Can't find Visual Studio" -goto fail - -:vsinstdir -rem Check Visual Studio version -set VSCMNDIR="%VSINSTALLDIR%\Common7\Tools\" -set VSCMNDIR=%VSCMNDIR:\\=\% - -if /I %VSCMNDIR% EQU "%VS160COMNTOOLS%" goto generate -if /I %VSCMNDIR% EQU "%VS170COMNTOOLS%" goto generate -if /I %VSCMNDIR% EQU "%VS180COMNTOOLS%" goto generate - -echo Unknown Visual Studio version -goto fail - - -:generate - -rem Generate Makefile -SET SFMT_MAKEFILE=Makefile.msc.%TARGET%.debug -SET SFMT_OUTDIR=build\%TARGET%\Debug - -if exist "%SFMT_MAKEFILE%" goto end_debug_gen -echo CFLAGS = /MTd /Od /nologo> %SFMT_MAKEFILE% -echo;>> %SFMT_MAKEFILE% -echo %SFMT_OUTDIR%\SFMTd.lib: SFMT.c>> %SFMT_MAKEFILE% -echo cl $(CFLAGS) /Fo%SFMT_OUTDIR%\SFMT.obj /c SFMT.c>> %SFMT_MAKEFILE% -echo lib /out:%SFMT_OUTDIR%\SFMTd.lib %SFMT_OUTDIR%\SFMT.obj>> %SFMT_MAKEFILE% - -:end_debug_gen - -IF NOT EXIST %SFMT_OUTDIR% MKDIR %SFMT_OUTDIR% -nmake /f Makefile.msc.%TARGET%.debug - - -SET SFMT_MAKEFILE=Makefile.msc.%TARGET%.release -SET SFMT_OUTDIR=build\%TARGET%\Release - -if exist "%SFMT_MAKEFILE%" goto end_release_gen -echo CFLAGS = /MT /O2 /nologo> %SFMT_MAKEFILE% -echo;>> %SFMT_MAKEFILE% -echo %SFMT_OUTDIR%\SFMT.lib: SFMT.c>> %SFMT_MAKEFILE% -echo cl $(CFLAGS) /Fo%SFMT_OUTDIR%\SFMT.obj /c SFMT.c>> %SFMT_MAKEFILE% -echo lib /out:%SFMT_OUTDIR%\SFMT.lib %SFMT_OUTDIR%\SFMT.obj>> %SFMT_MAKEFILE% - -:end_release_gen - -IF NOT EXIST %SFMT_OUTDIR% MKDIR %SFMT_OUTDIR% -nmake /f Makefile.msc.%TARGET%.release - - -rem Create version file -IF EXIST %filename% (GOTO FILE_TRUE) ELSE GOTO FILE_FALSE -:FILE_TRUE -ECHO "Found file: %filename%" -GOTO END - -:FILE_FALSE -ECHO "%filename% file was not fould. Generating it." -echo #define SFMT_VERSION "Unknown"> %filename% -GOTO END - -:END -popd -endlocal -exit /b 0 - - -:fail -popd -echo "buildSFMT.bat failed" -@echo on -endlocal -exit /b 1 diff --git a/libs/buildall.bat b/libs/buildall.bat deleted file mode 100644 index 8904d9766..000000000 --- a/libs/buildall.bat +++ /dev/null @@ -1,23 +0,0 @@ -CALL buildoniguruma6.bat -if ERRORLEVEL 1 ( - echo "buildall.bat I܂" - exit /b 1 -) - -CALL buildzlib.bat -if ERRORLEVEL 1 ( - echo "buildall.bat I܂" - exit /b 1 -) - -CALL buildlibressl.bat -if ERRORLEVEL 1 ( - echo "buildall.bat I܂" - exit /b 1 -) - -CALL buildSFMT.bat -if ERRORLEVEL 1 ( - echo "buildall.bat I܂" - exit /b 1 -) diff --git a/libs/buildall_cmake.bat b/libs/buildall_cmake.bat deleted file mode 100644 index 9dd926af1..000000000 --- a/libs/buildall_cmake.bat +++ /dev/null @@ -1,93 +0,0 @@ -@echo off -setlocal -chcp 65001 -cd /d %~dp0 - -if NOT "%CMAKE_COMMAND%" == "" goto pass_set_cmake -call ..\ci_scripts\find_cmake.bat -set OPT= -:pass_set_cmake - -:retry_vs -rem echo f. Visual Studio 18 2026 Win32 -rem echo g. Visual Studio 18 2026 x64 -rem echo h. Visual Studio 18 2026 ARM64 -echo 1. Visual Studio 17 2022 Win32 -echo 2. Visual Studio 17 2022 x64 -echo 3. Visual Studio 17 2022 ARM64 -echo 4. Visual Studio 16 2019 Win32 -echo 5. Visual Studio 16 2019 x64 -echo 6. Visual Studio 15 2017 -echo 7. Visual Studio 14 2015 -echo 8. Visual Studio 12 2013 -echo 9. Visual Studio 11 2012 -echo a. Visual Studio 10 2010 -echo b. Visual Studio 9 2008 -rem echo c. Visual Studio 8 2005 -rem echo d. Visual Studio NMake (experimental) -rem echo e. Cygwin MinGW Release + Unix Makefiles (experimental) -set /p no="select no " - -echo %no% -if "%no%" == "f" set GENERATOR="Visual Studio 18 2026" & set OPT=-DARCHITECTURE=Win32 & goto build_all -if "%no%" == "g" set GENERATOR="Visual Studio 18 2026" & set OPT=-DARCHITECTURE=x64 & goto build_all -if "%no%" == "h" set GENERATOR="Visual Studio 18 2026" & set OPT=-DARCHITECTURE=ARM64 & goto build_all -if "%no%" == "1" set GENERATOR="Visual Studio 17 2022" & set OPT=-DARCHITECTURE=Win32 & goto build_all -if "%no%" == "2" set GENERATOR="Visual Studio 17 2022" & set OPT=-DARCHITECTURE=x64 & goto build_all -if "%no%" == "3" set GENERATOR="Visual Studio 17 2022" & set OPT=-DARCHITECTURE=ARM64 & goto build_all -if "%no%" == "4" set GENERATOR="Visual Studio 16 2019" & set OPT=-DARCHITECTURE=Win32 & goto build_all -if "%no%" == "5" set GENERATOR="Visual Studio 16 2019" & set OPT=-DARCHITECTURE=x64 & goto build_all -if "%no%" == "6" set GENERATOR="Visual Studio 15 2017" & goto build_all -if "%no%" == "8" set GENERATOR="Visual Studio 14 2015" & goto build_all -if "%no%" == "8" set GENERATOR="Visual Studio 12 2013" & goto build_all -if "%no%" == "9" set GENERATOR="Visual Studio 11 2012" & goto build_all -if "%no%" == "a" set GENERATOR="Visual Studio 10 2010" & goto build_all -if "%no%" == "b" set GENERATOR="Visual Studio 9 2008" & goto build_all -if "%no%" == "c" set GENERATOR="Visual Studio 8 2005" & call :cmake_3_11_4 & goto build_all_2 -if "%no%" == "d" set GENERATOR="NMake Makefiles" & set OPT=-DCMAKE_BUILD_TYPE=Release & goto build_all -if "%no%" == "e" set GENERATOR="Unix Makefiles" & set OPT=-DCMAKE_TOOLCHAIN_FILE=../mingw.toolchain.cmake & goto build_all -echo ? retry -goto retry_vs - -:build_all -if exist "%CMAKE_COMMAND%" goto build_all_2 -where "%CMAKE_COMMAND%" 2> nul -if %errorlevel% == 0 goto build_all_2 -echo cmake not found -pause -exit /b - -:build_all_2 -set C="%CMAKE_COMMAND%" -DCMAKE_GENERATOR=%GENERATOR% %OPT% -P buildall.cmake -echo %C% -title %C% -pause -%C% - -:finish -echo build complete -endlocal -pause -exit /b - -:cmake_3_11_4 -set CMAKE_COMMAND=%~dp0..\buildtools\cmake-3.11.4-win32-x86\bin\cmake.exe -echo 1. PATHcmake.exegp -echo 2. VS2005łgpłcmakegp -echo (KvȂ玩Ń_E[hāAbuildtools/ɃCXg[) -if exist %CMAKE_COMMAND% echo CXg[ς(%CMAKE_COMMAND%) - -set /p no="select no " -echo %no% -if "%no%" == "2" goto download - -set CMAKE_COMMAND="cmake.exe" -where %CMAKE_COMMAND% -goto finish_cmake - -:download -if exist %CMAKE_COMMAND% goto finish_cmake -call ..\buildtools\getcmake.bat - -:finish_cmake -exit /b diff --git a/libs/buildlibressl.bat b/libs/buildlibressl.bat deleted file mode 100644 index e65a823b1..000000000 --- a/libs/buildlibressl.bat +++ /dev/null @@ -1,78 +0,0 @@ -rem Build LibreSSL -setlocal - -pushd libressl - - -rem architecture for VsDevCmd.bat -if "%TARGET%" == "" (set TARGET=Win32) -if "%TARGET%" == "Win32" (set ARCHITECTURE=x86) -if "%TARGET%" == "x64" (set ARCHITECTURE=x64) -if "%TARGET%" == "ARM64" (set ARCHITECTURE=arm64) -if "%TARGET%" == "ARM64" if "%HOST_ARCHITECTURE%" == "" (set HOST_ARCHITECTURE=amd64) - - -rem Find Visual Studio -if not "%VSINSTALLDIR%" == "" goto vsinstdir - -:check_2019 -if "%VS160COMNTOOLS%" == "" goto check_2022 -if not exist "%VS160COMNTOOLS%\VsDevCmd.bat" goto check_2022 -call "%VS160COMNTOOLS%\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% -goto vs2019 - -:check_2022 -if "%VS170COMNTOOLS%" == "" goto novs -if not exist "%VS170COMNTOOLS%\VsDevCmd.bat" goto novs -call "%VS170COMNTOOLS%\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% -goto vs2022 - -:novs -echo "Can't find Visual Studio" -goto fail - -:vsinstdir -rem Check Visual Studio version -set VSCMNDIR="%VSINSTALLDIR%\Common7\Tools\" -set VSCMNDIR=%VSCMNDIR:\\=\% - -if /I %VSCMNDIR% EQU "%VS160COMNTOOLS%" goto vs2019 -if /I %VSCMNDIR% EQU "%VS170COMNTOOLS%" goto vs2022 -if /I %VSCMNDIR% EQU "%VS180COMNTOOLS%" goto vs2026 - -echo Unknown Visual Studio version -goto fail - - -rem Generate Makefile -:vs2019 -set CMAKE_PARAMETER=-G "Visual Studio 16 2019" -A %TARGET% -B build\%TARGET% -goto gen_end - -:vs2022 -set CMAKE_PARAMETER=-G "Visual Studio 17 2022" -A %TARGET% -B build\%TARGET% -goto gen_end - -:vs2026 -set CMAKE_PARAMETER=-G "Visual Studio 18 2026" -A %TARGET% -B build\%TARGET% -goto gen_end - -:gen_end - -cmake -DMSVC=on -DUSE_STATIC_MSVC_RUNTIMES=on %CMAKE_PARAMETER% -cmake --build build\%TARGET% --target crypto --config Debug -cmake --build build\%TARGET% --target crypto --config Release - - -:end -popd -endlocal -exit /b 0 - - -:fail -popd -echo "buildlibressl.bat failed" -@echo on -endlocal -exit /b 1 diff --git a/libs/buildoniguruma6.bat b/libs/buildoniguruma6.bat deleted file mode 100644 index 636008dc4..000000000 --- a/libs/buildoniguruma6.bat +++ /dev/null @@ -1,79 +0,0 @@ -rem Build oniguruma -setlocal - -pushd oniguruma - - -rem architecture for VsDevCmd.bat -if "%TARGET%" == "" (set TARGET=Win32) -if "%TARGET%" == "Win32" (set ARCHITECTURE=x86) -if "%TARGET%" == "x64" (set ARCHITECTURE=x64) -if "%TARGET%" == "ARM64" (set ARCHITECTURE=arm64) -if "%TARGET%" == "ARM64" if "%HOST_ARCHITECTURE%" == "" (set HOST_ARCHITECTURE=amd64) - - -rem Find Visual Studio -if not "%VSINSTALLDIR%" == "" goto vsinstdir - -:check_2019 -if "%VS160COMNTOOLS%" == "" goto check_2022 -if not exist "%VS160COMNTOOLS%\VsDevCmd.bat" goto check_2022 -call "%VS160COMNTOOLS%\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% -goto vs2019 - -:check_2022 -if "%VS170COMNTOOLS%" == "" goto novs -if not exist "%VS170COMNTOOLS%\VsDevCmd.bat" goto novs -call "%VS170COMNTOOLS%\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% -goto vs2022 - -:novs -echo "Can't find Visual Studio" -goto fail - -:vsinstdir -rem Check Visual Studio version -set VSCMNDIR="%VSINSTALLDIR%\Common7\Tools\" -set VSCMNDIR=%VSCMNDIR:\\=\% - -if /I %VSCMNDIR% EQU "%VS160COMNTOOLS%" goto vs2019 -if /I %VSCMNDIR% EQU "%VS170COMNTOOLS%" goto vs2022 -if /I %VSCMNDIR% EQU "%VS180COMNTOOLS%" goto vs2026 - -echo Unknown Visual Studio version -goto fail - - -rem Generate Makefile -:vs2019 -cmake -G "Visual Studio 16 2019" -A %TARGET% -DBUILD_SHARED_LIBS=OFF -DMSVC_STATIC_RUNTIME=ON -S . -B build\%TARGET% -goto gen_end - -:vs2022 -cmake -G "Visual Studio 17 2022" -A %TARGET% -DBUILD_SHARED_LIBS=OFF -DMSVC_STATIC_RUNTIME=ON -S . -B build\%TARGET% -goto gen_end - -:vs2026 -cmake -G "Visual Studio 18 2026" -A %TARGET% -DBUILD_SHARED_LIBS=OFF -DMSVC_STATIC_RUNTIME=ON -S . -B build\%TARGET% -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -goto gen_end - -:gen_end - - -rem Build -cmake --build build\%TARGET% --target onig --config Debug -cmake --build build\%TARGET% --target onig --config Release - - -:end -popd -endlocal -exit /b 0 - - -:fail -popd -echo "buildoniguruma6.bat failed" -@echo on -endlocal -exit /b 1 diff --git a/libs/buildopenssl11.bat b/libs/buildopenssl11.bat deleted file mode 100644 index 285c8e1ff..000000000 --- a/libs/buildopenssl11.bat +++ /dev/null @@ -1,84 +0,0 @@ -rem OpenSSL̃rh - -cd openssl - - -rem Visual Studio 2005 ̏ꍇ̓pb`Kp -set CL_VER= -for /f "delims=" %%o in ('cl 2^>^&1') do set CL_VER=%%o & goto end_clver_chk -:end_clver_chk - -echo %CL_VER% | find "Compiler Version 14" >nul -if ERRORLEVEL 1 goto patch_end -pushd ..\openssl_patch -call apply_patch.bat -if ERRORLEVEL 1 ( - popd - goto fail -) -popd - -:patch_end - - -rem ossl_static.pdb *.pdb Ȃ̂ nmake clean ƍ폜Ă܂B -rem debug ̂Ƃ̂قKvƎv̂ŁA -rem release Ƀrh debug ossl_static.pdb c悤ɂB - -if exist "out32\libcrypto.lib" goto build_end -perl Configure no-asm no-async no-shared no-capieng no-dso no-engine VC-WIN32 -D_WIN32_WINNT=0x0501 -perl -e "open(IN,'makefile');while(){s| /MD| /MT|;print $_;}close(IN);" > makefile.tmp -if exist "makefile" del makefile -ren makefile.tmp makefile -nmake clean -nmake -mkdir out32 -move libcrypto* out32 -move libssl* out32 -move apps\openssl.exe out32 -move ossl_static.pdb out32 -:build_end - -if exist "out32.dbg\libcrypto.lib" goto build_dbg_end -perl Configure no-asm no-async no-shared no-capieng no-dso no-engine VC-WIN32 -D_WIN32_WINNT=0x0501 --debug -perl -e "open(IN,'makefile');while(){s| /MDd| /MTd|;print $_;}close(IN);" > makefile.tmp -if exist "makefile.dbg" del makefile.dbg -ren makefile.tmp makefile.dbg -nmake -f makefile.dbg clean -nmake -f makefile.dbg -mkdir out32.dbg -move libcrypto* out32.dbg -move libssl* out32.dbg -move apps\openssl.exe out32.dbg -move ossl_static.pdb out32.dbg -:build_dbg_end - - -rem Visual Studio 2005 ̏ꍇ 2003 R2 Platform SDK ̓mF -echo %CL_VER% | find "Compiler Version 14" >nul -if ERRORLEVEL 1 goto end -@echo off -if exist out32\openssl.exe ( - echo OpenSSL̃rhI܂B - goto end -) -echo crypt32.lib NłɃoCi쐬łĂ܂B -echo Platform SDKĂȂ”\܂B -set /P ANS2003SDK="s܂H(y/n)" -if "%ANS2003SDK%"=="y" ( - goto end -) else ( - goto fail -) - -:end -cd .. -@echo on -exit /b 0 - - -:fail -cd .. -echo "buildopenssl11.bat I܂" -@echo on -exit /b 1 diff --git a/libs/buildopenssl3.bat b/libs/buildopenssl3.bat deleted file mode 100644 index 8122def5f..000000000 --- a/libs/buildopenssl3.bat +++ /dev/null @@ -1,35 +0,0 @@ -rem OpenSSL̃rh - -cd openssl - - -rem nmmake clean ossl_static.pdb *.pdb Ȃ̂ō폜Ă܂B -rem ossl_static.pdb *.pdb Ȃ̂ nmake clean ƍ폜Ă܂B -rem debug ̂Ƃ̂قKvƎv̂ŁA -rem release Ƀrh debug ossl_static.pdb c悤ɂB - -if exist "out32\libcrypto.lib" goto build_end -perl Configure no-asm no-async no-shared no-capieng no-dso no-engine VC-WIN32 -perl -e "open(IN,'makefile');while(){s| /MD| /MT|;print $_;}close(IN);" > makefile.tmp -move /y makefile.tmp makefile -nmake -f makefile clean -nmake -f makefile build_libs -mkdir out32 -move /y libcrypto.lib out32\ -move /y ossl_static.pdb out32\ -:build_end - -if exist "out32.dbg\libcrypto.lib" goto build_dbg_end -perl Configure no-asm no-async no-shared no-capieng no-dso no-engine VC-WIN32 --debug -perl -e "open(IN,'makefile');while(){s| /MDd| /MTd|;print $_;}close(IN);" > makefile.tmp -move /y makefile.tmp makefile.dbg -nmake -f makefile.dbg clean -nmake -f makefile.dbg build_libs -mkdir out32.dbg -move /y libcrypto.lib out32.dbg\ -move /y ossl_static.pdb out32.dbg\ -:build_dbg_end - - -cd .. -exit /b 0 diff --git a/libs/buildzlib.bat b/libs/buildzlib.bat deleted file mode 100644 index 7aa0f3d17..000000000 --- a/libs/buildzlib.bat +++ /dev/null @@ -1,87 +0,0 @@ -rem Build zlib -setlocal - -pushd zlib - - -rem architecture for VsDevCmd.bat -if "%TARGET%" == "" (set TARGET=Win32) -if "%TARGET%" == "Win32" (set ARCHITECTURE=x86) -if "%TARGET%" == "x64" (set ARCHITECTURE=x64) -if "%TARGET%" == "ARM64" (set ARCHITECTURE=arm64) -if "%TARGET%" == "ARM64" if "%HOST_ARCHITECTURE%" == "" (set HOST_ARCHITECTURE=amd64) - - -rem Find Visual Studio -if not "%VSINSTALLDIR%" == "" goto vsinstdir - -:check_2019 -if "%VS160COMNTOOLS%" == "" goto check_2022 -if not exist "%VS160COMNTOOLS%\VsDevCmd.bat" goto check_2022 -call "%VS160COMNTOOLS%\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% -goto vs2019 - -:check_2022 -if "%VS170COMNTOOLS%" == "" goto novs -if not exist "%VS170COMNTOOLS%\VsDevCmd.bat" goto novs -call "%VS170COMNTOOLS%\VsDevCmd.bat" -arch=%ARCHITECTURE% -host_arch=%HOST_ARCHITECTURE% -goto vs2022 - -:novs -echo "Can't find Visual Studio" -goto fail - -:vsinstdir -rem Check Visual Studio version -set VSCMNDIR="%VSINSTALLDIR%\Common7\Tools\" -set VSCMNDIR=%VSCMNDIR:\\=\% - -if /I %VSCMNDIR% EQU "%VS160COMNTOOLS%" goto vs2019 -if /I %VSCMNDIR% EQU "%VS170COMNTOOLS%" goto vs2022 -if /I %VSCMNDIR% EQU "%VS180COMNTOOLS%" goto vs2026 - -echo Unknown Visual Studio version -goto fail - - -rem Generate Makefile -rem -DCMAKE_MSVC_RUNTIME_LIBRARY="MultiThreaded" を指定すると、Debug が MultiThreadedDebug にならず MultiThreaded になるので指定しない -:vs2019 -cmake -G "Visual Studio 16 2019" -A %TARGET% -S . -B build\%TARGET% -goto gen_end - -:vs2022 -cmake -G "Visual Studio 17 2022" -A %TARGET% -S . -B build\%TARGET% -goto gen_end - -:vs2026 -cmake -G "Visual Studio 18 2026" -A %TARGET% -S . -B build\%TARGET% -goto gen_end - -:gen_end - -rem libz must be /MT(d) -perl -e "open(IN,'build\%TARGET%\zlibstatic.vcxproj');while(){s/MultiThreadedDebugDLL/MultiThreadedDebug/;print $_;}close(IN);" > build\%TARGET%\zlibstatic.vcxproj.tmp -perl -e "open(IN,'build\%TARGET%\zlibstatic.vcxproj.tmp');while(){s/MultiThreadedDLL/MultiThreaded/;print $_;}close(IN);" > build\%TARGET%\zlibstatic.vcxproj.tmp2 -COPY build\%TARGET%\zlibstatic.vcxproj.tmp2 build\%TARGET%\zlibstatic.vcxproj -DEL build\%TARGET%\zlibstatic.vcxproj.tmp -DEL build\%TARGET%\zlibstatic.vcxproj.tmp2 - - -rem Build -cmake --build build\%TARGET% --target zlibstatic --config Debug -cmake --build build\%TARGET% --target zlibstatic --config Release - - -:end -popd -endlocal -exit /b 0 - - -:fail -popd -echo "buildzlib.bat failed" -@echo on -endlocal -exit /b 1 diff --git a/libs/openssl_patch/apply_patch.bat b/libs/openssl_patch/apply_patch.bat deleted file mode 100644 index ba361fc62..000000000 --- a/libs/openssl_patch/apply_patch.bat +++ /dev/null @@ -1,162 +0,0 @@ -@echo off - -rem folder ́Apatch s .. 猩΃pX -set folder=openssl_patch - -set cmdopt2=--binary --backup -p0 -set cmdopt1=--dry-run %cmdopt2% - - -rem pb`R}h̑݃`FbN -rem ..\%folder%\patch.exe, PATHʂĂpatch ̗D揇 -pushd .. -set patchcmd="%folder%\patch.exe" -if exist %patchcmd% ( - popd - goto cmd_true -) -popd - -set patchcmd=patch -%patchcmd% -v -if %errorlevel% == 0 (goto cmd_true) else goto cmd_false - -:cmd_true - - -:patch1 -rem freeaddrinfo/getnameinfo/getaddrinfo API(WindowsXPȍ~)ˑ̂ -findstr /c:"# undef AI_PASSIVE" ..\openssl\crypto\bio\bio_local.h -if ERRORLEVEL 1 goto fail1 -goto patch2 -:fail1 -pushd .. -%patchcmd% %cmdopt1% < %folder%\ws2_32_dll_patch2.txt -%patchcmd% %cmdopt2% < %folder%\ws2_32_dll_patch2.txt -popd - -:patch2 -:patch3 -:patch4 - - -:patch5 -rem WindowsMeRAND_bytesŗ錻ۉ̂߁B -rem OpenSSL 1.0.2łmethNULL`FbNAOpenSSL 1.1.1łȂȂĂB -rem NULL`FbN͂ȂĂ͂ȂA{InitializeCriticalSectionAndSpinCountɂ邽߁A -rem ftHgł͓KpȂ̂ƂB -rem findstr /c:"added if meth is NULL pointer" ..\openssl\crypto\rand\rand_lib.c -rem if ERRORLEVEL 1 goto fail5 -rem goto patch6 -rem :fail5 -rem pushd .. -rem %patchcmd% %cmdopt1% < %folder%\RAND_bytes.txt -rem %patchcmd% %cmdopt2% < %folder%\RAND_bytes.txt -rem popd - - -:patch6 -rem WindowsMeInitializeCriticalSectionAndSpinCountG[ƂȂ錻ۉ̂߁B -findstr /c:"myInitializeCriticalSectionAndSpinCount" ..\openssl\crypto\threads_win.c -if ERRORLEVEL 1 goto fail6 -goto patch7 -:fail6 -pushd .. -%patchcmd% %cmdopt1% < %folder%\atomic_api.txt -%patchcmd% %cmdopt2% < %folder%\atomic_api.txt -popd - - -:patch7 -rem Windows98/Me/NT4.0łCryptAcquireContextWɂGgs[擾 -rem łȂ߁AVljBCryptAcquireContextW̗p͎cB -findstr /c:"CryptAcquireContextA" ..\openssl\crypto\rand\rand_win.c -if ERRORLEVEL 1 goto fail7 -goto patch8 -:fail7 -pushd .. -%patchcmd% %cmdopt1% < %folder%\CryptAcquireContextW2.txt -%patchcmd% %cmdopt2% < %folder%\CryptAcquireContextW2.txt -popd - - -:patch8 -rem Windows95ł InterlockedCompareExchange InterlockedCompareExchange -rem T|[ĝ߁Aʂ̏ŒuB -rem InitializeCriticalSectionAndSpinCount T|[gAWindowsMe -rem uɊ܂܂B -findstr /c:"INTERLOCKEDCOMPAREEXCHANGE" ..\openssl\crypto\threads_win.c -if ERRORLEVEL 1 goto fail8 -goto patch9 -:fail8 -pushd .. -copy /b openssl\crypto\threads_win.c.orig openssl\crypto\threads_win.c.orig2 -%patchcmd% %cmdopt1% < %folder%\atomic_api_win95.txt -%patchcmd% %cmdopt2% < %folder%\atomic_api_win95.txt -popd - - -rem Windows95ł CryptAcquireContextW T|[ĝ߁AG[ŕԂ悤ɂB -rem G[ CryptAcquireContextA gB -:patch9 -findstr /c:"myCryptAcquireContextW" ..\openssl\crypto\rand\rand_win.c -if ERRORLEVEL 1 goto fail9 -goto patch10 -:fail9 -pushd .. -copy /b openssl\crypto\rand\rand_win.c.orig openssl\crypto\rand\rand_win.c.orig2 -%patchcmd% %cmdopt1% < %folder%\CryptAcquireContextW_win95.txt -%patchcmd% %cmdopt2% < %folder%\CryptAcquireContextW_win95.txt -popd - - -:patch10 - - -:patch_main_conf -rem ݒt@C̃obNAbv -if not exist "..\openssl\Configurations\10-main.conf.orig" ( - copy /y ..\openssl\Configurations\10-main.conf ..\openssl\Configurations\10-main.conf.orig -) - -rem VS2005ƌxG[ŃRpC~܂ւ̏u -perl -e "open(IN,'..\openssl\Configurations/10-main.conf');binmode(STDOUT);while(){s|/W3|/W1|;s|/WX||;print $_;}close(IN);" > conf.tmp -move conf.tmp ..\openssl\Configurations/10-main.conf - -rem GetModuleHandleExW API(WindowsXPȍ~)ˑ̂ -perl -e "open(IN,'..\openssl\Configurations/10-main.conf');binmode(STDOUT);while(){s|(dso_scheme(.+)"win32")|#$1|;print $_;}close(IN);" > conf.tmp -move conf.tmp ..\openssl\Configurations/10-main.conf - -rem Debug buildwarning LNK4099΍(Workaround) -perl -e "open(IN,'..\openssl\Configurations/10-main.conf');binmode(STDOUT);while(){s|/Zi|/Z7|;s|/WX||;print $_;}close(IN);" > conf.tmp -move conf.tmp ..\openssl\Configurations/10-main.conf - - -:patch_end -echo "pb`͓KpĂ܂" -goto end - - -:patchfail -echo "pb`KpĂȂ悤ł" -set /P ANS="s܂H(y/n)" -if "%ANS%"=="y" ( - goto end -) else if "%ANS%"=="n" ( - echo "apply_patch.bat I܂" - exit /b 1 -) -goto end - - -:cmd_false -echo pb`R}h‚܂ -echo LTCg_E[hāA..\%folder% Git-x.xx.x-32-bit.tar.bz2 -echo patch.exe, msys-gcc_s-1.dll, msys-2.0.dll zuĂ -echo https://github.com/git-for-windows/git/releases/latest -echo. -goto patchfail - - -:end -@echo on diff --git a/teraterm/susie_plugin/build_vs2005_win32.bat b/teraterm/susie_plugin/build_vs2005_win32.bat deleted file mode 100644 index 87e9cd18d..000000000 --- a/teraterm/susie_plugin/build_vs2005_win32.bat +++ /dev/null @@ -1,7 +0,0 @@ -set CMAKE=..\..\..\libs\cmake-3.11.4-win32-x86\bin\cmake.exe - -mkdir build_vs2005_win32 -cd build_vs2005_win32 -%CMAKE% -DEXTLIB=extlib/vs2005_win32 -G "Visual Studio 8 2005" .. -%CMAKE% --build . --config Release -pause diff --git a/teraterm/susie_plugin/extlib/build_vs2005_win32.bat b/teraterm/susie_plugin/extlib/build_vs2005_win32.bat deleted file mode 100644 index ac28e1813..000000000 --- a/teraterm/susie_plugin/extlib/build_vs2005_win32.bat +++ /dev/null @@ -1,4 +0,0 @@ -set CMAKE=..\..\..\libs\cmake-3.11.4-win32-x86\bin\cmake.exe - -%CMAKE% -DGENERATE_OPTION="-G;Visual Studio 8 2005" -DINSTALL_PREFIX_ADD="vs2005_win32/" -P extlib.cmake -pause From f746e24f62351dd0b45464c120b4f04c8c8829fc Mon Sep 17 00:00:00 2001 From: Mura Li <2606021+typeless@users.noreply.github.com> Date: Mon, 20 Jul 2026 11:33:48 +0800 Subject: [PATCH 5/6] Phase 5 (5/5): clean up after the MSVC/CMake build deletion - Remove the dead AppVeyor CI cluster (no root appveyor.yml exists): build_appveyor* scripts, appveyor_*.yml variants, appveyor.md, addpkg_*/upgrade_syscygwin/notify.bat. - Remove helpers orphaned with their deleted CMake pairs: gtags_update.bat, ico_scripts/icon_{combine,extract}.bat. - Delete the two build docs that only described the removed scripts (installer/ readme.md, installer/release.md). A develop-build.html rewrite for the putup build is a follow-up doc task. - .gitignore: drop the Visual Studio artifact lines (**/Debug/, **/Release/, **/*.vs/, *.aps/*.ncb/*.suo/*.user). - README.md: replace the dead msbuild.yml / build_cmake.yml CI badges with the putup build + release workflows. Nothing in the putup pipeline (putup.yml / putup-release.yml / their scripts) referenced any removed file -- verified before deletion. --- .gitignore | 9 - README.md | 4 +- ci_scripts/addpkg_msys2.bat | 9 - ci_scripts/addpkg_syscygwin.bat | 6 - ci_scripts/appveyor.md | 117 ------------ ci_scripts/appveyor_mix.yml | 118 ------------- ci_scripts/appveyor_release_bat.yml | 53 ------ ci_scripts/appveyor_ubuntu2004.yml | 15 -- ci_scripts/appveyor_vs2019_bat.yml | 50 ------ ci_scripts/appveyor_vs2022_bat.yml | 50 ------ ci_scripts/build_appveyor.bat | 56 ------ ci_scripts/build_appveyor_release_bat.bat | 10 -- .../build_appveyor_release_bat_pre_cache.bat | 18 -- ci_scripts/build_local_appveyor.bat | 153 ---------------- ci_scripts/notify.bat | 17 -- ci_scripts/upgrade_syscygwin.bat | 4 - gtags_update.bat | 5 - installer/readme.md | 166 ------------------ installer/release.md | 32 ---- .../common/ico/ico_scripts/icon_combine.bat | 3 - .../common/ico/ico_scripts/icon_extract.bat | 2 - 21 files changed, 2 insertions(+), 895 deletions(-) delete mode 100644 ci_scripts/addpkg_msys2.bat delete mode 100644 ci_scripts/addpkg_syscygwin.bat delete mode 100644 ci_scripts/appveyor.md delete mode 100644 ci_scripts/appveyor_mix.yml delete mode 100644 ci_scripts/appveyor_release_bat.yml delete mode 100644 ci_scripts/appveyor_ubuntu2004.yml delete mode 100644 ci_scripts/appveyor_vs2019_bat.yml delete mode 100644 ci_scripts/appveyor_vs2022_bat.yml delete mode 100644 ci_scripts/build_appveyor.bat delete mode 100644 ci_scripts/build_appveyor_release_bat.bat delete mode 100644 ci_scripts/build_appveyor_release_bat_pre_cache.bat delete mode 100644 ci_scripts/build_local_appveyor.bat delete mode 100644 ci_scripts/notify.bat delete mode 100644 ci_scripts/upgrade_syscygwin.bat delete mode 100644 gtags_update.bat delete mode 100644 installer/readme.md delete mode 100644 installer/release.md delete mode 100644 teraterm/common/ico/ico_scripts/icon_combine.bat delete mode 100644 teraterm/common/ico/ico_scripts/icon_extract.bat diff --git a/.gitignore b/.gitignore index f683f0694..3b4afbce9 100644 --- a/.gitignore +++ b/.gitignore @@ -2,18 +2,9 @@ build*/ *~ /libs/* *.obj -**/Debug/ -**/Release/ -**/Debug.*/ -**/Release.*/ -**/.vs/ -*.aps /GTAGS /GPATH /GRTAGS -*.ncb -*.suo -*.user *.map /gtags.files *.bak diff --git a/README.md b/README.md index 67c695dec..94a4082d2 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ | CI | Workflow | Status | |----|----------|--------| -| GitHub Actions | Build Installer | [![Build Status](https://github.com/TeraTermProject/teraterm/actions/workflows/msbuild.yml/badge.svg)](https://github.com/TeraTermProject/teraterm/actions/workflows/msbuild.yml) | -| GitHub Actions | Bulid with cmake (experimental) |[![Bulid with cmake (experimental)](https://github.com/TeraTermProject/teraterm/actions/workflows/build_cmake.yml/badge.svg)](https://github.com/TeraTermProject/teraterm/actions/workflows/build_cmake.yml) | +| GitHub Actions | Build (putup / clang-cl + xwin) | [![Build](https://github.com/typeless/teraterm/actions/workflows/putup.yml/badge.svg)](https://github.com/typeless/teraterm/actions/workflows/putup.yml) | +| GitHub Actions | Release (putup) | [![Release](https://github.com/typeless/teraterm/actions/workflows/putup-release.yml/badge.svg)](https://github.com/typeless/teraterm/actions/workflows/putup-release.yml) | Tera Term is a free software terminal emulator diff --git a/ci_scripts/addpkg_msys2.bat b/ci_scripts/addpkg_msys2.bat deleted file mode 100644 index dc90fa833..000000000 --- a/ci_scripts/addpkg_msys2.bat +++ /dev/null @@ -1,9 +0,0 @@ -echo %~dp0\addpkg_msys2.bat - -pushd %~dp0 - -if exist c:\msys64\usr\bin\pacman.exe ( - c:\msys64\usr\bin\pacman.exe -S --noconfirm --needed cmake -) - -popd diff --git a/ci_scripts/addpkg_syscygwin.bat b/ci_scripts/addpkg_syscygwin.bat deleted file mode 100644 index 00b083fa6..000000000 --- a/ci_scripts/addpkg_syscygwin.bat +++ /dev/null @@ -1,6 +0,0 @@ -echo %~dp0\addpkg_syscygwin.bat -set CUR=%~dp0 -call %CUR%..\buildtools\find_cygwin.bat - -%CYGWIN_PATH%\..\setup-x86_64.exe --quiet-mode --no-desktop --root %CYGWIN_PATH%\.. --packages cmake,perl-JSON,perl-LWP-Protocol-https - diff --git a/ci_scripts/appveyor.md b/ci_scripts/appveyor.md deleted file mode 100644 index fc56343db..000000000 --- a/ci_scripts/appveyor.md +++ /dev/null @@ -1,117 +0,0 @@ -AppVeyorの使用 -============== - -## プロジェクト作成 / 設定 - -- Select repository for your new project - - Generic の Git を選択 - - Clone URL - - https://github.com/TeraTermProject/teraterm.git など - - Authentication - - None (public repository) - - push [Add Git repository] button -- 設定 - - Settings/General - - Project name 設定する - - Default branch - - main など - - Custom configuration .yml file name (重要) - - AppVeyorからアクセスできるところに appveyor_*.ymlを置く - - https://raw.githubusercontent.com/TeraTermProject/teraterm/main/ci_scripts/appveyor_vs2022_bat.yml など - - push [save] button - -appveyor_vs*_bat.yml -==================== - -Windows image の Visual Studio を使用したビルド - -## build - -- Current build を選ぶ -- New Build を押す - - libs/ - - 最初は libs/ のライブラリをビルドするのに時間がかかる - - 2度目以降は lib/ 以下はキャッシュされる - - 30分/jobぐらい - - teraterm -- Artifacts にsnapshot.zip ができている - - -appveyor_release_bat.yml -======================== - -リリース用 - -- appveyor_vs2022_bat.yml がベース -- キャッシュを使用しない - - -appveyor_ubuntu2004.yml -======================= - -Linux image(Ubuntu2004) の MinGW を利用したビルド - - -appveyor_mix.yml -================ - -いくつかのイメージを使って Visual Studio, Mingw を使って一気にビルド - -最近使用していない - -build_local_appveyor_* -====================== - -- ローカルで build_appveyor.bat をテストするための bat ファイル -- Visual Studio と msys2 を使用 - -ローカルでのテスト(Linux) -======================= - -## ビルド準備/WSL - -- ストアで debian をインストールする - - 21-05-02時点で debian 10(buster) -- debian を起動 -- 次のコマンドを実行 - -``` -sudo apt-get update -sudo apt-get -y upgrade -sudo apt-get -y install cmake perl subversion -sudo apt-get -y install g++-mingw-w64 -sudo apt-get -y install fp-utils -cd /path/to/teraterm -``` - -## ビルド準備/debian - -- WSLと同じ -- 次のディストリビューション/バージョンに含まれているmingwでのビルドは確認した - -``` -$ cat /etc/os-release -PRETTY_NAME="Debian GNU/Linux bookworm/sid" -NAME="Debian GNU/Linux" -VERSION_CODENAME=bookworm -ID=debian -HOME_URL="https://www.debian.org/" -SUPPORT_URL="https://www.debian.org/support" -BUG_REPORT_URL="https://bugs.debian.org/" -``` - -## ビルド - -gcc 32bit - -``` -cmake -DCMAKE_GENERATOR="Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=../mingw.toolchain.cmake -P buildall.cmake -cmake -P ci_scripts/build_local_appveyor_mingw.cmake -``` - - -gcc 64bit -- `cmake -DCOMPILER_64BIT=ON -P ci_scripts/build_local_appveyor_mingw.cmake` - -msys64 -- [build_local_appveyor_mingw_cmake.bat](build_local_appveyor_mingw_cmake.bat)参照 diff --git a/ci_scripts/appveyor_mix.yml b/ci_scripts/appveyor_mix.yml deleted file mode 100644 index a3113edc2..000000000 --- a/ci_scripts/appveyor_mix.yml +++ /dev/null @@ -1,118 +0,0 @@ -version: 0.1.{build} - -environment: - matrix: - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022 - COMPILER: VS_143 - COMPILER_FRIENDLY: vs2022 - GENERATOR: "Visual Studio 17 2022" - CMAKE_COMMAND: cmake - CMAKE_OPTION_LIBS: -DARCHITECTURE=Win32 - CMAKE_OPTION_GENERATE: "-A Win32" - CMAKE_OPTION_BUILD: --config Release - BUILD_DIR: build - APPVEYOR_SAVE_CACHE_ON_ERROR: true - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 - COMPILER: VS_142 - COMPILER_FRIENDLY: vs2019 - GENERATOR: "Visual Studio 16 2019" - CMAKE_COMMAND: cmake - CMAKE_OPTION_LIBS: -DARCHITECTURE=Win32 - CMAKE_OPTION_GENERATE: "-A Win32" - CMAKE_OPTION_BUILD: --config Release - BUILD_DIR: build - APPVEYOR_SAVE_CACHE_ON_ERROR: true - #APPVEYOR_CACHE_SKIP_RESTORE: true - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 - COMPILER: VS_142_x64 - COMPILER_FRIENDLY: vs2019_x64 - GENERATOR: "Visual Studio 16 2019" - CMAKE_COMMAND: cmake - CMAKE_OPTION_LIBS: -DARCHITECTURE=x64 - CMAKE_OPTION_GENERATE: "-A x64" - CMAKE_OPTION_BUILD: --config Release - BUILD_DIR: build - APPVEYOR_SAVE_CACHE_ON_ERROR: true - #APPVEYOR_CACHE_SKIP_RESTORE: true - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013 - COMPILER: VS_90 - COMPILER_FRIENDLY: vs2008 - GENERATOR: "Visual Studio 9 2008" - CMAKE_COMMAND: cmake - CMAKE_OPTION_LIBS: -DARCHITECTURE=Win32 - CMAKE_OPTION_GENERATE: "-A Win32" - CMAKE_OPTION_BUILD: --config Release - BUILD_DIR: build - APPVEYOR_SAVE_CACHE_ON_ERROR: true - #APPVEYOR_CACHE_SKIP_RESTORE: true - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 - COMPILER: mingw - COMPILER_FRIENDLY: mingw_gcc_win32 - GENERATOR: "Unix Makefiles" - CMAKE_COMMAND: cmake - CMAKE_OPTION_LIBS: - CMAKE_OPTION_GENERATE: -DCMAKE_BUILD_TYPE=Release - CMAKE_OPTION_BUILD: - BUILD_DIR: build - MINGW_CC: gcc - MINGW_CXX: g++ - APPVEYOR_SAVE_CACHE_ON_ERROR: true - #APPVEYOR_CACHE_SKIP_RESTORE: true - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 - COMPILER: mingw_x64 - COMPILER_FRIENDLY: mingw_gcc_x64 - GENERATOR: "Unix Makefiles" - CMAKE_COMMAND: cmake - CMAKE_OPTION_LIBS: - CMAKE_OPTION_GENERATE: -DCMAKE_BUILD_TYPE=Release - CMAKE_OPTION_BUILD: - BUILD_DIR: build - MINGW_CC: gcc - MINGW_CXX: g++ - APPVEYOR_SAVE_CACHE_ON_ERROR: true - #APPVEYOR_CACHE_SKIP_RESTORE: true - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 - COMPILER: mingw - COMPILER_FRIENDLY: mingw_clang_win32 - GENERATOR: "Unix Makefiles" - CMAKE_COMMAND: cmake - CMAKE_OPTION_LIBS: - CMAKE_OPTION_GENERATE: -DCMAKE_BUILD_TYPE=Release - CMAKE_OPTION_BUILD: - BUILD_DIR: build - MINGW_CC: clang - MINGW_CXX: clang++ - APPVEYOR_SAVE_CACHE_ON_ERROR: true - #APPVEYOR_CACHE_SKIP_RESTORE: true - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 - COMPILER: mingw_x64 - COMPILER_FRIENDLY: mingw_clang_x64 - GENERATOR: "Unix Makefiles" - CMAKE_COMMAND: cmake - CMAKE_OPTION_LIBS: - CMAKE_OPTION_GENERATE: -DCMAKE_BUILD_TYPE=Release - CMAKE_OPTION_BUILD: - BUILD_DIR: build - MINGW_CC: clang - MINGW_CXX: clang++ - APPVEYOR_SAVE_CACHE_ON_ERROR: true - #APPVEYOR_CACHE_SKIP_RESTORE: true - -build: off - -build_script: - - call ci_scripts\build_appveyor.bat - -cache: - - libs - - buildtools - -artifacts: - - path: build\%ZIP_FILE% - - path: build\%SETUP_FILE%.exe - - path: build\buildinfo.txt - -on_success: - - ci_scripts\notify.bat success -on_failure: - - ci_scripts\notify.bat failure diff --git a/ci_scripts/appveyor_release_bat.yml b/ci_scripts/appveyor_release_bat.yml deleted file mode 100644 index 5f43ad1cf..000000000 --- a/ci_scripts/appveyor_release_bat.yml +++ /dev/null @@ -1,53 +0,0 @@ -image: Visual Studio 2022 - -environment: -# リリースではキャッシュを使わない -# APPVEYOR_SAVE_CACHE_ON_ERROR: true - VS_VERSION: 2022 - NOPAUSE: 1 - -build: off - -init: - # タイムゾーンを JST に変更 - - tzutil /s "Tokyo Standard Time" - -# リリースではキャッシュを使わない -# cache: -# - libs - -before_build: - # インストール済みの Cygwin を更新 - # - ci_scripts/upgrade_syscygwin.bat - # インストール済みの Cygwin にパッケージを追加 - - ci_scripts/addpkg_syscygwin.bat - # インストール済みの MSYS2 にパッケージを追加 - # - ci_scripts/addpkg_msys2.bat - # 自前の Cygwin をインストール - # - buildtools/install_cygwin.bat - # 自前の Inno Setup をインストール - - buildtools/install_innosetup.bat - -build_script: - - ci_scripts/build_appveyor_release_bat.bat - -after_build: - # ソース管理しているファイルがキャッシュされて更新されなくなるのを防ぐため削除 - # リリースではキャッシュを使わないので呼ばなくてよい - # - ci_scripts/build_appveyor_release_bat_pre_cache.bat - -artifacts: - - path: installer/Output/*.exe - - path: installer/Output/*.zip - - path: installer/Output/*.sha256sum - - path: installer/Output/*.sha512sum - -# AppVeyor のプロジェクトの Settings - Environment に WEBHOOK_URL を設定するかどうかで制御する -on_success: - - ci_scripts\notify.bat success -on_failure: - - ci_scripts\notify.bat failure - -on_finish: -# ビルド完了後に RDP が有効になる。blockRdp を指定しているので、完了後にも終了しない。 -# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) diff --git a/ci_scripts/appveyor_ubuntu2004.yml b/ci_scripts/appveyor_ubuntu2004.yml deleted file mode 100644 index a751053e7..000000000 --- a/ci_scripts/appveyor_ubuntu2004.yml +++ /dev/null @@ -1,15 +0,0 @@ -image: Ubuntu2004 - -build: off - -init: - - sudo apt-get -y install cmake perl subversion g++-mingw-w64 fp-utils - -cache: - - libs - -build_script: - - cmake -P ci_scripts/build_local_appveyor_mingw.cmake - -artifacts: - - path: build*/*.zip diff --git a/ci_scripts/appveyor_vs2019_bat.yml b/ci_scripts/appveyor_vs2019_bat.yml deleted file mode 100644 index 207371725..000000000 --- a/ci_scripts/appveyor_vs2019_bat.yml +++ /dev/null @@ -1,50 +0,0 @@ -image: Visual Studio 2019 - -environment: - APPVEYOR_SAVE_CACHE_ON_ERROR: true - VS_VERSION: 2019 - NOPAUSE: 1 - -build: off - -init: - # タイムゾーンを JST に変更 - - tzutil /s "Tokyo Standard Time" - -cache: - - libs - -before_build: - # インストール済みの Cygwin を更新 - # - ci_scripts/upgrade_syscygwin.bat - # インストール済みの Cygwin にパッケージを追加 - - ci_scripts/addpkg_syscygwin.bat - # インストール済みの MSYS2 にパッケージを追加 - # - ci_scripts/addpkg_msys2.bat - # 自前の Cygwin をインストール - # - bulidtools/install_cygwin.bat - # 自前の Inno Setup をインストール - - buildtools/install_innosetup.bat - -build_script: - - ci_scripts/build_appveyor_release_bat.bat - -after_build: - # ソース管理しているファイルがキャッシュされて更新されなくなるのを防ぐため削除 - - ci_scripts/build_appveyor_release_bat_pre_cache.bat - -artifacts: - - path: installer/Output/*.exe - - path: installer/Output/*.zip - - path: installer/Output/*.sha256sum - - path: installer/Output/*.sha512sum - -# AppVeyor のプロジェクトの Settings - Environment に WEBHOOK_URL を設定するかどうかで制御する -on_success: - - ci_scripts\notify.bat success -on_failure: - - ci_scripts\notify.bat failure - -on_finish: -# ビルド完了後に RDP が有効になる。blockRdp を指定しているので、完了後にも終了しない。 -# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) diff --git a/ci_scripts/appveyor_vs2022_bat.yml b/ci_scripts/appveyor_vs2022_bat.yml deleted file mode 100644 index e88970d88..000000000 --- a/ci_scripts/appveyor_vs2022_bat.yml +++ /dev/null @@ -1,50 +0,0 @@ -image: Visual Studio 2022 - -environment: - APPVEYOR_SAVE_CACHE_ON_ERROR: true - VS_VERSION: 2022 - NOPAUSE: 1 - -build: off - -init: - # タイムゾーンを JST に変更 - - tzutil /s "Tokyo Standard Time" - -cache: - - libs - -before_build: - # インストール済みの Cygwin を更新 - # - ci_scripts/upgrade_syscygwin.bat - # インストール済みの Cygwin にパッケージを追加 - - ci_scripts/addpkg_syscygwin.bat - # インストール済みの MSYS2 にパッケージを追加 - # - ci_scripts/addpkg_msys2.bat - # 自前の Cygwin をインストール - # - buldtools/install_cygwin.bat - # 自前の Inno Setup をインストール - - buildtools/install_innosetup.bat - -build_script: - - ci_scripts/build_appveyor_release_bat.bat - -after_build: - # ソース管理しているファイルがキャッシュされて更新されなくなるのを防ぐため削除 - - ci_scripts/build_appveyor_release_bat_pre_cache.bat - -artifacts: - - path: installer/Output/*.exe - - path: installer/Output/*.zip - - path: installer/Output/*.sha256sum - - path: installer/Output/*.sha512sum - -# AppVeyor のプロジェクトの Settings - Environment に WEBHOOK_URL を設定するかどうかで制御する -on_success: - - ci_scripts\notify.bat success -on_failure: - - ci_scripts\notify.bat failure - -on_finish: -# ビルド完了後に RDP が有効になる。blockRdp を指定しているので、完了後にも終了しない。 -# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) diff --git a/ci_scripts/build_appveyor.bat b/ci_scripts/build_appveyor.bat deleted file mode 100644 index 0a26a6e23..000000000 --- a/ci_scripts/build_appveyor.bat +++ /dev/null @@ -1,56 +0,0 @@ -cd /d %~dp0.. -if exist teraterm\ttpdlg\svnversion.h del teraterm\ttpdlg\svnversion.h -if exist buildtools\svnrev\sourcetree_info.bat del buildtools\svnrev\sourcetree_info.bat -rem call buildtools\install_cygwin.bat -cd /d %~dp0.. -call buildtools\svnrev\svnrev.bat -call buildtools\svnrev\sourcetree_info.bat -echo GENERATOR=%GENERATOR% -echo CMAKE_OPTION_LIBS=%CMAKE_OPTION_LIBS% -echo CMAKE_COMMAND=%CMAKE_COMMAND% -echo BUILD_DIR=%BUILD_DIR% -pause -if "%COMPILER%" == "mingw" ( - set PATH=C:\msys64\mingw32\bin;C:\msys64\usr\bin - pacman -S --noconfirm --needed mingw-w64-i686-cmake mingw-w64-i686-gcc make - if "%MINGW_CC%" == "clang" ( - pacman -S --noconfirm --needed mingw-w64-i686-clang - ) - set CC=%MINGW_CC% - set CXX=%MINGW_CXX% - set CMAKE=C:\msys64\mingw64\bin\cmake.exe - set CMAKE_OPTION_BUILD=-- -s -j - set CMAKE_OPTION_GENERATE=%CMAKE_OPTION_GENERATE% -DCMAKE_BUILD_TYPE=Release -) -if "%COMPILER%" == "mingw_x64" ( - set PATH=C:\msys64\mingw64\bin;C:\msys64\usr\bin - pacman -S --noconfirm --needed mingw-w64-x86_64-cmake mingw-w64-x86_64-gcc make - pacman -S --noconfirm --needed mingw-w64-i686-cmake mingw-w64-i686-gcc make - if "%MINGW_CC%" == "clang" ( - pacman -S --noconfirm --needed mingw-w64-x86_64-clang - pacman -S --noconfirm --needed mingw-w64-i686-clang - ) - set CC=%MINGW_CC% - set CXX=%MINGW_CXX% - set CMAKE_OPTION_BUILD=-- -s -j - set CMAKE_OPTION_GENERATE=%CMAKE_OPTION_GENERATE% -DCMAKE_BUILD_TYPE=Release -) -if exist libs\omit_build_libs_%COMPILER% goto omit_build_libs -cd libs -"%CMAKE_COMMAND%" -DCMAKE_GENERATOR="%GENERATOR%" %CMAKE_OPTION_LIBS% -P buildall.cmake -rem if exist build rmdir /s /q build -rem if exist download rmdir /s /q download -cd .. -:omit_build_libs -if not exist %BUILD_DIR% mkdir %BUILD_DIR% -cd %BUILD_DIR% -if exist build_config.cmake del build_config.cmake -if exist cmakecache.txt del cmakecache.txt -set ZIP_FILE=teraterm-%VERSION%-r%SVNVERSION%-%DATE%_%TIME%-appveyor-%COMPILER_FRIENDLY%.zip -set SETUP_FILE=teraterm-%VERSION%-r%SVNVERSION%-%DATE%_%TIME%-appveyor-%COMPILER_FRIENDLY% -set SNAPSHOT_DIR=teraterm-%VERSION%-r%SVNVERSION%-%DATE%_%TIME%-appveyor-%COMPILER_FRIENDLY% -"%CMAKE_COMMAND%" .. -G "%GENERATOR%" %CMAKE_OPTION_GENERATE% -DSNAPSHOT_DIR=%SNAPSHOT_DIR% -DSETUP_ZIP=%ZIP_FILE% -DSETUP_EXE=%SETUP_FILE% -DSETUP_RELEASE=%RELEASE% -"%CMAKE_COMMAND%" --build . --target install %CMAKE_OPTION_BUILD% -"%CMAKE_COMMAND%" --build . --target zip -"%CMAKE_COMMAND%" --build . --target inno_setup -cd .. diff --git a/ci_scripts/build_appveyor_release_bat.bat b/ci_scripts/build_appveyor_release_bat.bat deleted file mode 100644 index 342db88ce..000000000 --- a/ci_scripts/build_appveyor_release_bat.bat +++ /dev/null @@ -1,10 +0,0 @@ -echo %~dp0\build_appveyor_release_bat.bat - -set CUR=%~dp0 - -cd /d %CUR%.. -call installer\release.bat 2 -if ERRORLEVEL 1 ( - echo installer\release.bat 2 - exit 1 -) diff --git a/ci_scripts/build_appveyor_release_bat_pre_cache.bat b/ci_scripts/build_appveyor_release_bat_pre_cache.bat deleted file mode 100644 index 89301a5f4..000000000 --- a/ci_scripts/build_appveyor_release_bat_pre_cache.bat +++ /dev/null @@ -1,18 +0,0 @@ -echo %~dp0\build_appveyor_release_bat_pre_cache.bat - -rem LbVɕsvȃt@C폜 -set CUR=%~dp0 -cd /d %CUR%.. -del %CUR%..\libs\*.txt -del %CUR%..\libs\*.cmake -del %CUR%..\libs\*.bat -del %CUR%..\buildtools\*.md -del %CUR%..\buildtools\*.cmake -del %CUR%..\buildtools\*.bat -del %CUR%..\buildtools\*.ps1 -rmdir /s /q %CUR%..\buildtools\docker -rmdir /s /q %CUR%..\buildtools\download\cygwin_package -rmdir /s /q %CUR%..\buildtools\download\cygwin32_package -if exist %CUR%..\buildtools\download\innosetup6 ( - rmdir /s /q %CUR%..\buildtools\download\innosetup6 -) diff --git a/ci_scripts/build_local_appveyor.bat b/ci_scripts/build_local_appveyor.bat deleted file mode 100644 index 06d1c4c4e..000000000 --- a/ci_scripts/build_local_appveyor.bat +++ /dev/null @@ -1,153 +0,0 @@ -@echo off -setlocal -chcp 65001 -set CUR=%~dp0 -cd /d %CUR% - -echo ======= -echo 1. vs2022 Win32 -echo 2. vs2022 x64 -echo b. vs2022 ARM64 -echo 3. vs2019 Win32 -echo 4. vs2019 x64 -echo 5. mingw gcc Win32 -echo 6. mingw gcc x64 -echo 7. mingw clang Win32 -echo 8. mingw clang x64 -echo 9. exit -rem echo a. vs2005 - -if "%1" == "" ( - set /p no="select no " -) else ( - set no=%1 -) -echo %no% - -if not "%no%" == "1" goto pass_1 - set COMPILER=VS_143 - set COMPILER_FRIENDLY=vs2022 - set GENERATOR=Visual Studio 17 2022 - set CMAKE_COMMAND=cmake - set CMAKE_OPTION_LIBS=-DARCHITECTURE=Win32 - set CMAKE_OPTION_GENERATE=-A Win32 - set CMAKE_OPTION_BUILD=--config Release - set BUILD_DIR=build_%COMPILER_FRIENDLY%_Win32 - call :build -:pass_1 -if not "%no%" == "2" goto pass_2 - set COMPILER=VS_143_x64 - set COMPILER_FRIENDLY=vs2022_x64 - set GENERATOR=Visual Studio 17 2022 - set CMAKE_COMMAND=cmake - set CMAKE_OPTION_LIBS=-DARCHITECTURE=x64 - set CMAKE_OPTION_GENERATE=-A x64 - set CMAKE_OPTION_BUILD=--config Release - set BUILD_DIR=build_%COMPILER_FRIENDLY% - call :build -:pass_2 -if not "%no%" == "b" goto pass_a - set COMPILER=VS_143_ARM64 - set COMPILER_FRIENDLY=vs2022_ARM64 - set GENERATOR=Visual Studio 17 2022 - set CMAKE_COMMAND=cmake - set CMAKE_OPTION_LIBS=-DARCHITECTURE=ARM64 - set CMAKE_OPTION_GENERATE=-A ARM64 - set CMAKE_OPTION_BUILD=--config Release - set BUILD_DIR=build_%COMPILER_FRIENDLY% - call :build -:pass_a -if not "%no%" == "3" goto pass_3 - set COMPILER=VS_142 - set COMPILER_FRIENDLY=vs2019 - set GENERATOR=Visual Studio 16 2019 - set CMAKE_COMMAND=cmake - set CMAKE_OPTION_LIBS=-DARCHITECTURE=Win32 - set CMAKE_OPTION_GENERATE=-A Win32 - set CMAKE_OPTION_BUILD=--config Release - set BUILD_DIR=build_%COMPILER_FRIENDLY% - call :build -:pass_3 -if not "%no%" == "4" goto pass_4 - set COMPILER=VS_142_x64 - set COMPILER_FRIENDLY=vs2019_x64 - set GENERATOR=Visual Studio 16 2019 - set CMAKE_COMMAND=cmake - set CMAKE_OPTION_LIBS=-DARCHITECTURE=x64 - set CMAKE_OPTION_GENERATE=-A x64 - set CMAKE_OPTION_BUILD=--config Release - set BUILD_DIR=build_%COMPILER_FRIENDLY% - call :build -:pass_4 -if not "%no%" == "a" goto pass_a - set COMPILER=VS_80 - set COMPILER_FRIENDLY=vs2005 - set GENERATOR=Visual Studio 8 2005 - set CMAKE_COMMAND=..\libs\cmake-3.11.4-win32-x86\bin\cmake.exe - set CMAKE_OPTION_LIBS=-DARCHITECTURE=Win32 - set CMAKE_OPTION_GENERATE= - set CMAKE_OPTION_BUILD=--config Release - set BUILD_DIR=build_%COMPILER_FRIENDLY% -:pass_a -if not "%no%" == "5" goto pass_5 - set COMPILER=mingw - set COMPILER_FRIENDLY=mingw_gcc - set GENERATOR=Unix Makefiles - set CMAKE_COMMAND=cmake - set CMAKE_OPTION_LIBS=-DARCHITECTURE=i686 - set CMAKE_OPTION_GENERATE=-DCMAKE_BUILD_TYPE=Release - set CMAKE_OPTION_BUILD= - set MINGW_CC=gcc - set MINGW_CXX=g++ - set BUILD_DIR=build_%COMPILER_FRIENDLY%_msys2 - call :build -:pass_5 -if not "%no%" == "6" goto pass_6 - set COMPILER=mingw_x64 - set COMPILER_FRIENDLY=mingw_x64_gcc - set GENERATOR=Unix Makefiles - set CMAKE_COMMAND=cmake - set CMAKE_OPTION_LIBS=-DARCHITECTURE=x86_64 - set CMAKE_OPTION_GENERATE=-DCMAKE_BUILD_TYPE=Release - set CMAKE_OPTION_BUILD= - set MINGW_CC=gcc - set MINGW_CXX=g++ - set BUILD_DIR=build_%COMPILER_FRIENDLY%_msys2 - call :build -:pass_6 -if not "%no%" == "7" goto pass_7 - set COMPILER=mingw - set COMPILER_FRIENDLY=mingw_clang - set GENERATOR=Unix Makefiles - set CMAKE_COMMAND=cmake - set CMAKE_OPTION_LIBS=-DARCHITECTURE=i686 - set CMAKE_OPTION_GENERATE=-DCMAKE_BUILD_TYPE=Release - set CMAKE_OPTION_BUILD= - set MINGW_CC=clang - set MINGW_CXX=clang++ - set BUILD_DIR=build_%COMPILER_FRIENDLY%_msys2 - call :build -:pass_7 -if not "%no%" == "8" goto pass_8 - set COMPILER=mingw_x64 - set COMPILER_FRIENDLY=mingw_x64_clang - set GENERATOR=Unix Makefiles - set CMAKE_COMMAND=cmake - set CMAKE_OPTION_LIBS=-DARCHITECTURE=x86_64 - set CMAKE_OPTION_GENERATE=-DCMAKE_BUILD_TYPE=Release - set CMAKE_OPTION_BUILD= - set MINGW_CC=clang - set MINGW_CXX=clang++ - set BUILD_DIR=build_%COMPILER_FRIENDLY%_msys2 - call :build -:pass_8 - -if not "%NOPAUSE%" == "1" pause -exit /b 0 - -rem #################### -:build -cd /d %~dp0.. -call ci_scripts\find_cmake.bat -call ci_scripts\build_appveyor.bat -exit /b 0 diff --git a/ci_scripts/notify.bat b/ci_scripts/notify.bat deleted file mode 100644 index 2994f7edb..000000000 --- a/ci_scripts/notify.bat +++ /dev/null @@ -1,17 +0,0 @@ -rem perl WEBHOOK_URL ɒʒm - -echo notify.bat %1 -set result=%1 - -pushd %~dp0 - -if "%APPVEYOR%" == "" goto pass_discord -if "%WEBHOOK_URL%" == "" goto pass_discord -if "%CYGWIN_PATH%" == "" call %~dp0..\buildtools\find_cygwin.bat -if "%CYGWIN_PATH%" == "" goto pass_discord - -rem NEED perl-JSON,perl-LWP-Protocol-https packages -%CYGWIN_PATH%\perl.exe notify_discord.pl %result% - -:pass_discord -popd diff --git a/ci_scripts/upgrade_syscygwin.bat b/ci_scripts/upgrade_syscygwin.bat deleted file mode 100644 index a3e2a0370..000000000 --- a/ci_scripts/upgrade_syscygwin.bat +++ /dev/null @@ -1,4 +0,0 @@ -echo %~dp0\addpkg_syscygwin.bat - -c:\cygwin64\setup-x86_64.exe --upgrade-also --no-desktop --quiet-mode - diff --git a/gtags_update.bat b/gtags_update.bat deleted file mode 100644 index c56df9bb3..000000000 --- a/gtags_update.bat +++ /dev/null @@ -1,5 +0,0 @@ -setlocal -cd /d %~dp0 -call ci_scripts\find_cmake.bat -"%CMAKE_COMMAND%" -P gtags_update.cmake -rem see doc_internal/readme.md diff --git a/installer/readme.md b/installer/readme.md deleted file mode 100644 index 198d317ad..000000000 --- a/installer/readme.md +++ /dev/null @@ -1,166 +0,0 @@ -# 各種バッチファイル/スクリプトの使い方 - -## ビルドの全体像 - -``` -msbuild.yml - | - +--> release.bat - | +--> build_common.bat - | +--> doc/makechm.bat - | +--> makelang.bat - | - +--> release.bat アーキテクチャごとに呼び出し - | +--> libs/buildall.bat - | | +--> libs/buildoniguruma6.bat - | | +--> libs/buildzlib.bat - | | +--> libs/buildlibressl.bat - | | +--> libs/buildSFMT.bat - | +--> build_arch.bat - | +--> collect_files.bat - | +--> create_packages.bat - +--> iscc_signed.cmake アーキテクチャごとに呼び出し - -release.bat を直接起動したり、コマンドプロンプトから release.bat を呼び出すこともできます -``` - -## 解説 - -- msbuild.yml - - GitHub Actions workflow ファイル - -- check_sjis_code.bat - - 英語版HTMLヘルプ(..\doc\en\)に日本語(Shift_JIS)が含まれていないかを調べ、結果を"result.txt"に書き出す。 - -- release.bat - - ビルド(リリース)用batファイル - - [release.md](release.md) 参照してください。 - -- build_common.bat - - ヘルプを作成します - - cygterm.exe をビルドします - - msys2term.exe をビルドします - - cygterm.+.tar.gz を作成します - - makelang.bat を呼び出します - - 生成物を一か所に集めます - - ./teraterm_common/ - -- makelang.bat - - lng ファイルを作成します - -- libs/buildall.bat - - ライブラリをビルドします。 - -- build_arch.bat - - Visual Studio プロジェクトをビルドします - -- collect_files.bat - - バイナリを一か所に集めます - - ./teraterm-%arch%/ - - ./teraterm-%arch%_pdb/ - -- create_packages.bat - - インストーラー、zipを作成します。 - -- teraterm.iss - - インストーラー(Inno Setup)スクリプトファイル。 - -- iscc_signed.cmake - - msbuild.yml から呼び出され、署名済みバイナリを含んだインストーラを作成します - -- codesigning.bat - - 実行ファイルにコードサイニング証明書を付与します。(古いテスト版で不使用) - - -## 環境変数 - -workflow では build_arch ジョブの arch で指定される。TARGET は arch を元に自動設定される。 -コマンドプロンプトから指定するときは、環境変数に arch と TARGET を set する。 - -- VS_VERSION - - インストールされている Visual Studio を探すために使用される - - 設定されていない場合は 2022 が使用される -- arch - - インストーラ・ポータブルのファイル名・フォルダ名に使用される -- TARGET - - Visual Studio プロジェクト - - devenv の SolnConfigName の指定に使用される - - Visual Studio での $(Platform) になる - - ファイルの出力先フォルダ名に使用される - - ライブラリ - - cmake の -A に使用される - - .lib ファイルの出力先フォルダ名に使用される -- ARCHITECTURE - - TARGET から自動設定され、VsDevCmd.bat の -arch に使用される - - cl の選択に使用され、cl はライブラリのコンパイルに使用される -- HOST_ARCHITECTURE - - TARGET から自動設定され、VsDevCmd.bat の -host_arch に使用される - - cl の選択に使用され、cl はライブラリのコンパイルに使用される - - -## フォルダに出力されるファイル -- 通常時 - - OUTPUT=teraterm-${VERSION}-%arch%-${DATE_TIME}-${VCSVERSION}-snapshot - - 例: teraterm-x.y.z-x86-dev-YYMMDD_HHMMSS-githash-snapshot -- リリース時 - - OUTPUT=teraterm-${VERSION}-%arch% - - 例: teraterm-x.y.z-x64 - -``` -release/Output/ - build/ - teraterm-common/ ... build_common.bat - teraterm-%arch%/ ... build_arch.bat - teraterm-%arch%_pdb/ ... build_arch.bat - ${OUTPUT}/ ... collect_files.bat - Output/build/teraterm/ をコピー - ${OUTPUT}_pdb/ ... collect_files.bat - Output/build/teraterm_pdb/ をコピー - ${OUTPUT}.exe ... collect_files.bat - Output/build/teraterm/ からファイルを拾う - ${OUTPUT}.zip ... collect_files.bat - ${OUTPUT}/ を圧縮 - ${OUTPUT}_pdb.zip ... collect_files.bat - ${OUTPUT}_pdb/ を圧縮 - ${OUTPUT}.sha256sum ... collect_files.bat - ${OUTPUT}.sha512sum ... collect_files.bat - portable/ - teraterm-%arch%/ ... create_package.bat - Output/build/teraterm-%arch%/ をコピー - portable_signed/ - teraterm-%arch%/ ... msbuild.yml - 署名して SignPath からダウンロード - 最終的に ${OUTPUT}/ にリネームされる - ${OUTPUT}/ ... msbuild.yml - Output/portable_signed/teraterm-%arch%/ をリネーム - setup/ - ${OUTPUT}.exe ... iscc_signed.cmake - Output/portable_signed/teraterm-%arch%/ からファイルを拾う - setup_signed/ - ${OUTPUT}.exe ... msbuild.yml - 署名して SignPath からダウンロード - release/ ... msbuild.yml - ${OUTPUT}.exe ... Output/setup_signed/${OUTPUT}.exe をコピー - ${OUTPUT}.zip ... Output/portable_signed/${OUTPUT}/ を圧縮 - ${OUTPUT}_pdb.zip ... Output/${OUTPUT}_pdb.zip をコピー - ${OUTPUT}.sha256sum - ${OUTPUT}.sha512sum -``` - - -## artifact に出力されるファイル -- buildinfo -- teraterm_common -- BUILD-${{ github.run_number }}-${{ github.run_id }}-VS${{ matrix.VS_VERSION }}-${{ matrix.arch }}-zip -- BUILD-${{ github.run_number }}-${{ github.run_id }}-VS${{ matrix.VS_VERSION }}-${{ matrix.arch }}-pdb -- BUILD-${{ github.run_number }}-${{ github.run_id }}-VS${{ matrix.VS_VERSION }}-${{ matrix.arch }}-installer -- BUILD-${{ github.run_number }}-${{ github.run_id }}-VS${{ matrix.VS_VERSION }}-${{ matrix.arch }}-sha256sum -- BUILD-${{ github.run_number }}-${{ github.run_id }}-VS${{ matrix.VS_VERSION }}-${{ matrix.arch }}-sha512sum -- portable_unsigned-${{ matrix.arch }} ... 署名のために SignPath に渡す用 -- setup_unsigned-${{ matrix.arch }}- - ... 署名のために SignPath に渡す用 -- ${OUTPUT}_ZIP -- ${OUTPUT}_EXE -- ${OUTPUT}_FILES -- checksum ... リリース用ファイルすべての checksum - - diff --git a/installer/release.md b/installer/release.md deleted file mode 100644 index 83f6b8a91..000000000 --- a/installer/release.md +++ /dev/null @@ -1,32 +0,0 @@ -# release.bat について - -## ビルドの全体像 - -[readme.md](readme.md) を参照してください。 - -## 解説 - -- Tera Term をビルドするためのスクリプト(Windows用batファイル) - - ミスなくリリース用バイナリを作成することを目的としている - - 使用ライブラリをダウンロード、展開、ビルドできる -- 実行前に環境変数を設定する - - [readme.md](readme.md) を参照してください。 -- 次の機能がある - - ビルド環境の準備 - - 環境変数 PATH の設定 - - 使用するライブラリをダウンロード、展開、ビルド - - Tera Term をビルド、アーカイブ、インストーラー作成 - - 使用ツールのパスやバージョンなどを表示 - - ビルドできる状態にセットアップして cmd.exe を起動する -- ビルドに使用するツールの指定について - - 各ツールのデフォルトのインストールフォルダを探す - - 個別に使用したいツールを明示する場合は toolinfo.bat で指定する - - 参考 toolinfo_sample.bat - - 使用ツールは次のドキュメントを参照 - - [doc/ja/html/reference/develop.html](../doc/ja/html/reference/develop.html) -- Tera Termをビルドしたときの最終的な生成ファイル - - [readme.md](readme.md) を参照してください。 - -## pdbファイル - -pdbファイルについては[dump](../doc/ja/html/reference/develop-memo.html#dump)を参照ください diff --git a/teraterm/common/ico/ico_scripts/icon_combine.bat b/teraterm/common/ico/ico_scripts/icon_combine.bat deleted file mode 100644 index ed9efe99e..000000000 --- a/teraterm/common/ico/ico_scripts/icon_combine.bat +++ /dev/null @@ -1,3 +0,0 @@ -rem cmake -P icon_combine.cmake -cmake -DCOPY_BMP_ICO=1 -P icon_combine.cmake -pause diff --git a/teraterm/common/ico/ico_scripts/icon_extract.bat b/teraterm/common/ico/ico_scripts/icon_extract.bat deleted file mode 100644 index 9753889e0..000000000 --- a/teraterm/common/ico/ico_scripts/icon_extract.bat +++ /dev/null @@ -1,2 +0,0 @@ -cmake -P icon_extract.cmake -pause From 84dab03dd4453c20ec762cf64f02430b353f0a44 Mon Sep 17 00:00:00 2001 From: Mura Li <2606021+typeless@users.noreply.github.com> Date: Mon, 20 Jul 2026 11:45:24 +0800 Subject: [PATCH 6/6] Phase 5 (fix): restore CMake wrongly deleted with the build The full putup-release dispatch caught two mistakes in the deletion: 1. buildtools/install_{cygwin,innosetup,sbapplocale}.cmake are NOT part of the MSVC build -- they are invoked (`cmake -P install_*.cmake`) by the kept install_*.bat wrappers that putup-release.yml's cygterm/chm/package jobs use. Deleting them broke those jobs ("CMake Error: Not a file: install_cygwin.cmake"). Restore them. 2. Over-reach: deleted the CMake for orthogonal dev tooling (doc_internal doxygen, gtags source tags, icon generation) whose .sh/.bat wrappers survive. That is not the app build putup replaces. Restore doc_internal/{doxygen,global}.cmake, gtags_update.{cmake,bat}, and ico_scripts/icon_{combine,extract}.{cmake,bat}. Also delete buildtools/docker/ -- the old CMake/mingw build's dev container, dead now that libs/buildall.cmake + mingw.toolchain.cmake are gone. --- buildtools/docker/Dockerfile | 63 ----------- buildtools/docker/README.md | 47 -------- buildtools/docker/build.sh | 25 ---- buildtools/docker/docker-compose.yml | 16 --- buildtools/docker/docker_build.sh | 8 -- buildtools/install_cygwin.cmake | 107 ++++++++++++++++++ buildtools/install_innosetup.cmake | 47 ++++++++ buildtools/install_sbapplocale.cmake | 39 +++++++ doc_internal/doxygen.cmake | 7 ++ doc_internal/global.cmake | 18 +++ gtags_update.bat | 5 + gtags_update.cmake | 29 +++++ .../common/ico/ico_scripts/icon_combine.bat | 3 + .../common/ico/ico_scripts/icon_combine.cmake | 95 ++++++++++++++++ .../common/ico/ico_scripts/icon_extract.bat | 2 + .../common/ico/ico_scripts/icon_extract.cmake | 55 +++++++++ 16 files changed, 407 insertions(+), 159 deletions(-) delete mode 100644 buildtools/docker/Dockerfile delete mode 100644 buildtools/docker/README.md delete mode 100644 buildtools/docker/build.sh delete mode 100644 buildtools/docker/docker-compose.yml delete mode 100644 buildtools/docker/docker_build.sh create mode 100644 buildtools/install_cygwin.cmake create mode 100644 buildtools/install_innosetup.cmake create mode 100644 buildtools/install_sbapplocale.cmake create mode 100644 doc_internal/doxygen.cmake create mode 100644 doc_internal/global.cmake create mode 100644 gtags_update.bat create mode 100644 gtags_update.cmake create mode 100644 teraterm/common/ico/ico_scripts/icon_combine.bat create mode 100644 teraterm/common/ico/ico_scripts/icon_combine.cmake create mode 100644 teraterm/common/ico/ico_scripts/icon_extract.bat create mode 100644 teraterm/common/ico/ico_scripts/icon_extract.cmake diff --git a/buildtools/docker/Dockerfile b/buildtools/docker/Dockerfile deleted file mode 100644 index cfce8f154..000000000 --- a/buildtools/docker/Dockerfile +++ /dev/null @@ -1,63 +0,0 @@ -#FROM debian:trixie-20240701-slim -FROM debian:bookworm-20250113-slim - -ARG USER=ttbuilder -ARG EMAIL=ttbuilder@example.com -ARG UID=1000 -ARG GID=1000 - -ENV DEBIAN_FRONTEND=noninteractive - -RUN \ - apt-get update && \ - apt-get install -y \ - cmake cmake-curses-gui \ - perl \ - gcc-mingw-w64-i686-win32 g++-mingw-w64-i686-win32 \ - fp-utils \ - git nasm - -# locale -RUN \ - apt-get install -y locales && \ - sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen && \ - locale-gen en_US.UTF-8 && \ - update-locale LANG=en_US.UTF-8 - -# add user -RUN \ - apt-get install -y sudo && \ - groupadd -g ${GID} ${USER} && \ - useradd -u ${UID} -g ${GID} -m -s /bin/bash ${USER} && \ - usermod -aG sudo ${USER} && \ - echo "${USER} ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/${USER} && \ - chmod 0440 /etc/sudoers.d/${USER} && \ - touch /home/${USER}/.sudo_as_admin_successful - -# timezone -RUN \ - ln -snf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime && \ - echo "Asia/Tokyo" > /etc/timezone - -# cleanup -RUN \ - apt clean && \ - rm -rf /var/lib/apt/lists/* - -# env -ENV USER=${USER} -ENV EMAIL=${USER}@example.com -ENV LANG=en_US.UTF-8 -ENV LANGUAGE=en_US:en -ENV LC_ALL=en_US.UTF-8 -ENV BRANCH=main -ENV URL=https://github.com/TeraTermProject/teraterm.git - -RUN mkdir -p /workspaces && chown ${USER}:${USER} /workspaces -USER ${USER} -WORKDIR /workspaces/teraterm - -COPY --chown=${USER}:${USER} build.sh . -RUN \ - git config --global user.name "${USER}" && \ - git config --global user.email "${EMAIL}" diff --git a/buildtools/docker/README.md b/buildtools/docker/README.md deleted file mode 100644 index 279a25610..000000000 --- a/buildtools/docker/README.md +++ /dev/null @@ -1,47 +0,0 @@ -# build with MinGW + docker (experimental) - -- Thread model win32版のMinGWを使ってビルド -- dockerでビルド環境(linux)を作成、docker中でビルド - -- linuxビルドの制限 - - cygterm, msys2termはビルドできない - - インストーラは作成できない - -## 準備 Windowsの場合 - -- Docker Desktop を使えるようにする -- 次のファイルを取得、次のコマンドを実行 - - `docker_build.bat` - - `Dockerfile` - - `build.sh` -- `docker_build.bat`を実行 -- dockerのコンテナ内のbashが起動する - -### 実行例 - -``` -curl -O https://raw.githubusercontent.com/TeraTermProject/teraterm/refs/heads/main/buildtools/docker/docker_build.bat -curl -O https://raw.githubusercontent.com/TeraTermProject/teraterm/refs/heads/main/buildtools/docker/Dockerfile -curl -O https://raw.githubusercontent.com/TeraTermProject/teraterm/refs/heads/main/buildtools/docker/build.sh -docker_build.bat -``` -## 準備 Linux(WSL)の場合 - -- Dockerを使えるようにする -- 次のファイルを取得、次のコマンドを実行 - - `docker_build.sh` - - `Dockerfile` - - `build.sh` -- `docker_build.bat`を実行 -- dockerのコンテナ内のbashが起動する - - -## ビルド - -- `bash ./build.sh` を実行 -- dockerを起動したフォルダに teraterm*.zip ができる - -## docker-compose.yml - -`docker compose run --rm dev bash` -作成中 diff --git a/buildtools/docker/build.sh b/buildtools/docker/build.sh deleted file mode 100644 index 2eda106e7..000000000 --- a/buildtools/docker/build.sh +++ /dev/null @@ -1,25 +0,0 @@ -if [ -n "${COPY_FROM_HOST+x}" ]; then - clone=false -else - clone=true -fi -if $clone; then - git clone --branch "${BRANCH:-main}" --depth 1 "${URL:-https://github.com/TeraTermProject/teraterm.git}" teraterm -else - git config --global --add safe.directory /workspaces/teraterm/teraterm_host - (cd teraterm_host/ && git archive HEAD -o ../current.tar) - (mkdir -p teraterm && cd teraterm && tar xf ../current.tar) - cp -r teraterm_host/libs/download/* teraterm/libs/download -fi -cd teraterm -cd libs -cmake -DCMAKE_GENERATOR="Unix Makefiles" -DARCHITECTURE=i686 -P buildall.cmake -rm -rf build -cd .. -mkdir build -cd build -cmake .. -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=../mingw.toolchain.cmake -DARCHITECTURE=i686 -DSUPPORT_OLD_WINDOWS=on -DCMAKE_BUILD_TYPE=Release -make -j $(nproc) -make -j install -bash make_installer_cmake.sh -cp *.zip /mnt/ diff --git a/buildtools/docker/docker-compose.yml b/buildtools/docker/docker-compose.yml deleted file mode 100644 index c8cc56cf8..000000000 --- a/buildtools/docker/docker-compose.yml +++ /dev/null @@ -1,16 +0,0 @@ -services: - dev: - image: teraterm_build:latest - build: - context: . - dockerfile: Dockerfile - args: - USER: ${USER:-ttbuilder} - EMAIL: ${EMAIL:-ttbuilder@example.com} - UID: ${UID:-1000} - GID: ${GID:-1000} - container_name: teraterm_mingw - volumes: - - ../..:/workspaces/teraterm - working_dir: /workspaces/teraterm - tty: true diff --git a/buildtools/docker/docker_build.sh b/buildtools/docker/docker_build.sh deleted file mode 100644 index 9fed735e0..000000000 --- a/buildtools/docker/docker_build.sh +++ /dev/null @@ -1,8 +0,0 @@ -CUR=$(cd "$(dirname "$0")" && pwd) -docker build --build-arg USER=${USER:-ttbuilder} -t teraterm_build:1.0 -t teraterm_build:latest . - -MOUNTS="--mount type=bind,src=$CUR,dst=/mnt" -if [ -e "$CUR/../../.git" ]; then - MOUNTS="$MOUNTS --mount type=bind,src=$CUR/../..,dst=/workspaces/teraterm/teraterm_host" -fi -docker run -it --rm $MOUNTS teraterm_build:latest bash diff --git a/buildtools/install_cygwin.cmake b/buildtools/install_cygwin.cmake new file mode 100644 index 000000000..16d9f3092 --- /dev/null +++ b/buildtools/install_cygwin.cmake @@ -0,0 +1,107 @@ +# install cygwin in this folder +# cmake -P install_cygwin.cmake +# cmake -DREMOVE_TMP=ON -P install_cygwin.cmake +set(CYGWIN_ROOT "${CMAKE_CURRENT_LIST_DIR}/cygwin64") +if(DEFINED ENV{REMOVE_TMP}) + set(REMOVE_TMP ON) +else() + option(REMOVE_TMP "" OFF) +endif() + +# cygroot +if(EXISTS "${CYGWIN_ROOT}") + file(MAKE_DIRECTORY "${CYGWIN_ROOT}") +endif() + +if("${CYGWIN_ROOT}" MATCHES "cygdrive") + # cygwin の cmake を使用するとpath(CYGWIN_ROOT) が /cygdrive/c.. となり + # setup.exe の --root オプションで処理できない + message(FATAL_ERROR "check CMAKE_COMMAND (${CMAKE_COMMAND})") +endif() + +############################## +# cygwin (64bit) latest + +# setup-x86_64.exe 2.937 +set(SETUP_URL "https://cygwin.com/setup-x86_64.exe") +set(SETUP_HASH_SHA256 "2c9f2fb56e1fb687b5d9680afa8f8b06e6214f0e483096af0eae1946431226c5") +set(SETUP "${CYGWIN_ROOT}/setup-x86_64.exe") + +set(DOWNLOAD_SITE "http://mirrors.kernel.org/sourceware/cygwin/") +set(PACKAGE "${CMAKE_CURRENT_LIST_DIR}/download/cygwin_package") + +# setup-x86_64.exe を準備 +set(HASH "0") +if(EXISTS ${SETUP}) + file(SHA256 ${SETUP} HASH) +endif() +if(NOT (${HASH} STREQUAL ${SETUP_HASH_SHA256})) + # DOWNLOAD + file(DOWNLOAD + ${SETUP_URL} + ${PACKAGE}/setup-x86_64.exe + EXPECTED_HASH SHA256=${SETUP_HASH_SHA256} + SHOW_PROGRESS + ) + file(COPY ${PACKAGE}/setup-x86_64.exe DESTINATION ${CYGWIN_ROOT}) +endif() + +# install packages +execute_process( + COMMAND ${SETUP} --quiet-mode --wait --no-admin --root ${CYGWIN_ROOT} --site ${DOWNLOAD_SITE} --local-package-dir ${PACKAGE} --upgrade-also --packages cmake,bash,tar,make,perl,gcc-core,gcc-g++,icoutils + WORKING_DIRECTORY ${CYGWIN_ROOT} +) +# install packages for notify +execute_process( + COMMAND ${SETUP} --quiet-mode --wait --no-admin --root ${CYGWIN_ROOT} --site ${DOWNLOAD_SITE} --local-package-dir ${PACKAGE} --upgrade-also--packages perl-JSON,perl-LWP-Protocol-https + WORKING_DIRECTORY ${CYGWIN_ROOT} +) + +# remove archives +if(REMOVE_TMP) + file(GLOB ARC_FILES "${PACKAGE}/http*") + file(REMOVE_RECURSE ${ARC_FILES}) +endif() + +############################## +# cygwin 32bit from time machine +# http://www.crouchingtigerhiddenfruitbat.org/Cygwin/timemachine.html + +#set(SETUP_EXE setup-x86_64-2.909.exe) +#set(SETUP_HASH_SHA256 b9219acd1241ffa4d38e19587f1ccc2854f951e451f3858efc9d2e1fe19d375c) +#set(DOWNLOAD_SITE "http://ctm.crouchingtigerhiddenfruitbat.org/pub/cygwin/circa/64bit/2021/10/28/174906") +set(SETUP_EXE setup-x86_64-2.924.exe) +set(SETUP_URL "http://ctm.crouchingtigerhiddenfruitbat.org/pub/cygwin/setup/snapshots/${SETUP_EXE}") +set(SETUP_HASH_SHA256 edd0a64dc65087ffe453ca94b267169b39458a983b29ac31320fcaa983d0f97e) +set(SETUP "${CYGWIN_ROOT}/${SETUP_EXE}") + +set(DOWNLOAD_SITE "http://ctm.crouchingtigerhiddenfruitbat.org/pub/cygwin/circa/64bit/2022/12/01/145510") +set(PACKAGE "${CMAKE_CURRENT_LIST_DIR}/download/cygwin32_package") + +# setup-x86_64-2.924.exe を準備 +set(HASH "0") +if(EXISTS ${SETUP}) + file(SHA256 ${SETUP} HASH) +endif() +if(NOT (${HASH} STREQUAL ${SETUP_HASH_SHA256})) + # DWONLOAD + file(DOWNLOAD + ${SETUP_URL} + ${PACKAGE}/${SETUP_EXE} + EXPECTED_HASH SHA256=${SETUP_HASH_SHA256} + SHOW_PROGRESS + ) + file(COPY ${PACKAGE}/${SETUP_EXE} DESTINATION ${CYGWIN_ROOT}) +endif() + +# install packages +execute_process( + COMMAND ${SETUP} -X --quiet-mode --wait --no-admin --root ${CYGWIN_ROOT} --site ${DOWNLOAD_SITE} --local-package-dir ${PACKAGE} --packages cygwin32-gcc-g++ + WORKING_DIRECTORY ${CYGWIN_ROOT} +) + +# remove archives +if(REMOVE_TMP) + file(GLOB ARC_FILES "${PACKAGE}/http*") + file(REMOVE_RECURSE ${ARC_FILES}) +endif() diff --git a/buildtools/install_innosetup.cmake b/buildtools/install_innosetup.cmake new file mode 100644 index 000000000..5c4e4bd06 --- /dev/null +++ b/buildtools/install_innosetup.cmake @@ -0,0 +1,47 @@ +# cmake -P innosetup.cmake +if(DEFINED ENV{REMOVE_TMP}) + set(REMOVE_TMP ON) +else() + option(REMOVE_TMP "" OFF) +endif() + +# innosetup 6.7.2 +set(INNOSETUP_EXE "innosetup-6.7.2.exe") +set(INNOSETUP_URL "https://github.com/jrsoftware/issrc/releases/download/is-6_7_2/${INNOSETUP_EXE}") +set(INNOSETUP_HASH "9f27f8386e554eb093336a1ca5c2dcacb7dbf04ab020889491d7ac53c38a12ff") +set(INNOSETUP_CHECK_FILE innosetup6/ISCC.exe) +set(INNOSETUP_CHECK_HASH "bb8d5f6cfaddc1446d1db2b900b056b8393faaeaf987bdfe25a2905702d2c9c6") + +# check innosetup +if(EXISTS ${CMAKE_CURRENT_LIST_DIR}/${INNOSETUP_CHECK_FILE}) + file(SHA256 ${CMAKE_CURRENT_LIST_DIR}/${INNOSETUP_CHECK_FILE} HASH) + if(${HASH} STREQUAL ${INNOSETUP_CHECK_HASH}) + return() + endif() + message("file ${CMAKE_CURRENT_LIST_DIR}/${INNOSETUP_CHECK_FILE}") + message("actual HASH=${HASH}") + message("expect HASH=${INNOSETUP_CHECK_HASH}") +endif() + +# download +message("download ${INNOSETUP_EXE} from ${INNOSETUP_URL}") +file(MAKE_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/download/innosetup6") +file(DOWNLOAD + ${INNOSETUP_URL} + ${CMAKE_CURRENT_LIST_DIR}/download/innosetup6/${INNOSETUP_EXE} + EXPECTED_HASH SHA256=${INNOSETUP_HASH} + SHOW_PROGRESS + ) + +# setup +if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/innosetup6") + file(REMOVE_RECURSE "${CMAKE_CURRENT_LIST_DIR}/innosetup6") +endif() +file(MAKE_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/innosetup6") +execute_process( + COMMAND ${CMAKE_CURRENT_LIST_DIR}/download/innosetup6/${INNOSETUP_EXE} /dir=. /CURRENTUSER /PORTABLE=1 /VERYSILENT + WORKING_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/innosetup6" + ) +if(REMOVE_TMP) + file(REMOVE_RECURSE "${CMAKE_CURRENT_LIST_DIR}/download/innosetup6") +endif() diff --git a/buildtools/install_sbapplocale.cmake b/buildtools/install_sbapplocale.cmake new file mode 100644 index 000000000..01aa904d2 --- /dev/null +++ b/buildtools/install_sbapplocale.cmake @@ -0,0 +1,39 @@ +# cmake -P install_sbapplocale.cmake + +# sbapplocale +set(SBAPPLOCALE_EXE "${CMAKE_CURRENT_LIST_DIR}/sbapplocale/sbapplocale.exe") +set(SBAPPLOCALE_EXE_HASH "bcabc2d5ab34bff8f147d12b69e0a019d16cf6c06859ba765e4e68f20c948577") +set(SBAPPLOCALE_URL "http://www.magicnotes.com/steelbytes/SBAppLocale_ENG.zip") +set(SBAPPLOCALE_ZIP "${CMAKE_CURRENT_LIST_DIR}/download/sbapplocale/SBAppLocale_ENG.zip") +set(SBAPPLOCALE_ZIP_HASH "e9edfd32cd5f03b36fac024f814ab8dd38e4880f3e6faacdea92d0e4d671fac1") + +# check sbapplocale +if(EXISTS ${SBAPPLOCALE_EXE}) + file(SHA256 ${SBAPPLOCALE_EXE} HASH) + if(${HASH} STREQUAL ${SBAPPLOCALE_EXE_HASH}) + return() + endif() + message("file ${SBAPPLOCALE_EXE}") + message("actual HASH=${HASH}") + message("expect HASH=${SBAPPLOCALE_EXE_HASH}") +endif() + +# download +message("download ${SBAPPLOCALE_ZIP} from ${SBAPPLOCALE_URL}") +file(MAKE_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/download/sbapplocale") +file(DOWNLOAD + ${SBAPPLOCALE_URL} + ${SBAPPLOCALE_ZIP} + EXPECTED_HASH SHA256=${SBAPPLOCALE_ZIP_HASH} + SHOW_PROGRESS +) + +# setup +if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/sbapplocale") + file(REMOVE_RECURSE "${CMAKE_CURRENT_LIST_DIR}/sbapplocale") +endif() +file(MAKE_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/sbapplocale") +file(ARCHIVE_EXTRACT + INPUT ${SBAPPLOCALE_ZIP} + DESTINATION "${CMAKE_CURRENT_LIST_DIR}/sbapplocale" +) diff --git a/doc_internal/doxygen.cmake b/doc_internal/doxygen.cmake new file mode 100644 index 000000000..61e71a88d --- /dev/null +++ b/doc_internal/doxygen.cmake @@ -0,0 +1,7 @@ +find_program(DOXYGEN Doxygen) +message("DOXYGEN=${DOXYGEN}") + +execute_process( + COMMAND ${DOXYGEN} Doxyfile + WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}/doxygen + ) diff --git a/doc_internal/global.cmake b/doc_internal/global.cmake new file mode 100644 index 000000000..4272b5621 --- /dev/null +++ b/doc_internal/global.cmake @@ -0,0 +1,18 @@ + +file(REMOVE_RECURSE global) + +execute_process( + COMMAND ${CMAKE_COMMAND} -P gtags_update.cmake + WORKING_DIRECTORY ".." + ) + +find_program(HTAGS htags) +message("HTAGS=${HTAGS}") + +execute_process( + COMMAND ${HTAGS} -ans --tabs 4 -F + WORKING_DIRECTORY ".." + ) + +file(MAKE_DIRECTORY global) +file(RENAME ../HTML global/HTML) diff --git a/gtags_update.bat b/gtags_update.bat new file mode 100644 index 000000000..c56df9bb3 --- /dev/null +++ b/gtags_update.bat @@ -0,0 +1,5 @@ +setlocal +cd /d %~dp0 +call ci_scripts\find_cmake.bat +"%CMAKE_COMMAND%" -P gtags_update.cmake +rem see doc_internal/readme.md diff --git a/gtags_update.cmake b/gtags_update.cmake new file mode 100644 index 000000000..e56b3d1ae --- /dev/null +++ b/gtags_update.cmake @@ -0,0 +1,29 @@ +#!/usr/bin/env cmake -P +find_program(FIND find + HINTS C:/cygwin64/bin + HINTS C:/cygwin/bin + HINTS C:/msys64/usr/bin + ) +find_program(GREP grep + HINTS C:/cygwin64/bin + HINTS C:/cygwin/bin + HINTS C:/msys64/usr/bin + ) +find_program(GTAGS gtags) +message("FIND=${FIND}") +message("GREP=${GREP}") +message("GTAGS=${GTAGS}") + +execute_process( + COMMAND ${FIND} teraterm TTProxy TTX* ttssh2 cygwin ttpmenu -type f -name "*.c" -o -name "*.cpp" -o -name "*.h" + COMMAND ${GREP} -v Release + COMMAND ${GREP} -v Debug + COMMAND ${GREP} -v .vs + COMMAND ${GREP} -v build + OUTPUT_FILE gtags.files + WORKING_DIRECTORY "." + ) +execute_process( + COMMAND ${GTAGS} -f gtags.files + ) +# see doc_internal/readme.md diff --git a/teraterm/common/ico/ico_scripts/icon_combine.bat b/teraterm/common/ico/ico_scripts/icon_combine.bat new file mode 100644 index 000000000..ed9efe99e --- /dev/null +++ b/teraterm/common/ico/ico_scripts/icon_combine.bat @@ -0,0 +1,3 @@ +rem cmake -P icon_combine.cmake +cmake -DCOPY_BMP_ICO=1 -P icon_combine.cmake +pause diff --git a/teraterm/common/ico/ico_scripts/icon_combine.cmake b/teraterm/common/ico/ico_scripts/icon_combine.cmake new file mode 100644 index 000000000..5a8e3238a --- /dev/null +++ b/teraterm/common/ico/ico_scripts/icon_combine.cmake @@ -0,0 +1,95 @@ +# cmake -DCOPY_BMP_ICO=1 -P icon_combine.cmake + +option(COPY_ICO "copy ico file to source folder" 0) +option(COPY_BMP_ICO "copy BMP ico file to source folder" 0) + +#set(ICOTOOL "icotool") +find_program( + ICOTOOL icotool + HINTS ${CMAKE_CURRENT_LIST_DIR}/../../../../buildtools/cygwin64 + HINTS c:/cygwin64/bin +) +message("icotool=${ICOTOOL}") +message("COPY_ICO=${COPY_ICO}") +message("COPY_BMP_ICO=${COPY_BMP_ICO}") + +# icoファイルを作成する +# +# basename icoファイルの拡張子をとったファイル名(フォルダ名) +# PNG_ICO 0/1=pngを含まない/含んだicoファイル +# 256x256のpngファイルは png のまま icoファイルにする +# ICO icoファイル名 (basename フォルダ内に作成する) +# EXIST_256 0/1 = 256x256のpngファイルが存在しなかった/した +# +function(ico_combine_raw basename PNG_ICO ICO EXIST_256) + set(DEST ${basename}) + set(${EXIST_256} 0 PARENT_SCOPE) + + file(GLOB imgs + RELATIVE "${CMAKE_CURRENT_LIST_DIR}/${basename}" + "${basename}/*.png") + + unset(ARGS) + foreach(f IN LISTS imgs) + if(${f} MATCHES "256x256") + set(${EXIST_256} 1 PARENT_SCOPE) + if(${PNG_ICO}) + list(APPEND ARGS "-r") + endif() + endif() + list(APPEND ARGS ${f}) + endforeach() + + #message("${ICOTOOL} -c ${ARGS}") + execute_process( + COMMAND ${ICOTOOL} -c ${ARGS} + OUTPUT_FILE ${ICO} + WORKING_DIRECTORY ${DEST} + ) + + return(${PNG}) +endfunction() + +# icoファイルを作成, 必要なら上書きする +# +# basename icoファイルの拡張子をとったファイル名 +# rel_path icoファイルのあるフォルダ +# +function(ico_combine basename rel_path) + set(ICO "${basename}.ico") + ico_combine_raw(${basename} 1 ${ICO} EXIST_256) + if(${COPY_ICO}) + file(COPY_FILE ${basename}/${ICO} ${rel_path}/${ICO}) + endif() + + set(ICO "${basename}_bmp.ico") + ico_combine_raw(${basename} 0 ${ICO} EXIST_256) + if(${COPY_BMP_ICO} AND ${EXIST_256}) + message("copy ${basename}/${ICO} ${rel_path}/${ICO}") + file(COPY_FILE ${basename}/${ICO} ${rel_path}/${ICO}) + endif() +endfunction() + +ico_combine("teraterm" "../..") +ico_combine("teraterm_3d" "../..") +ico_combine("teraterm_classic" "../..") +ico_combine("teraterm_flat" "../..") +ico_combine("tterm16" "../..") +ico_combine("tek" "../..") +ico_combine("tek16" "../..") +ico_combine("cygterm" "../../../../cygwin/cygterm") +ico_combine("vt" "../..") +ico_combine("vt_3d" "../..") +ico_combine("vt_classic" "../..") +ico_combine("vt_flat" "../..") +ico_combine("vt16" "../..") +ico_combine("ttmacr16" "../../../ttpmacro") +ico_combine("ttmacro" "../../../ttpmacro") +ico_combine("ttmacrof" "../../../ttpmacro") +ico_combine("ttmacro_3d" "../../../ttpmacro") +ico_combine("ttmacro_flat" "../../../ttpmacro") +ico_combine("ttsecure" "../../../../ttssh2/ttxssh") +ico_combine("ttsecure_classic" "../../../../ttssh2/ttxssh") +ico_combine("ttsecure_flat" "../../../../ttssh2/ttxssh") +ico_combine("ttsecure_green" "../../../../ttssh2/ttxssh") +ico_combine("ttsecure_yellow" "../../../../ttssh2/ttxssh") diff --git a/teraterm/common/ico/ico_scripts/icon_extract.bat b/teraterm/common/ico/ico_scripts/icon_extract.bat new file mode 100644 index 000000000..9753889e0 --- /dev/null +++ b/teraterm/common/ico/ico_scripts/icon_extract.bat @@ -0,0 +1,2 @@ +cmake -P icon_extract.cmake +pause diff --git a/teraterm/common/ico/ico_scripts/icon_extract.cmake b/teraterm/common/ico/ico_scripts/icon_extract.cmake new file mode 100644 index 000000000..723cb5634 --- /dev/null +++ b/teraterm/common/ico/ico_scripts/icon_extract.cmake @@ -0,0 +1,55 @@ +# cmake -P icon_extract.cmake + +#set(ICOTOOL "icotool") +find_program( + ICOTOOL icotool + HINTS ${CMAKE_CURRENT_LIST_DIR}/../../../../buildtools/cygwin64 + HINTS c:/cygwin64/bin +) +message("icotool=${ICOTOOL}") + +# icoファイルを分解する +# +# basename icoファイルの拡張子をとったファイル名 +# rel_path このファイルのあるフォルダからの相対パス +# +function(ico_extract basename rel_path) + set(DEST ${basename}) + set(ICO "${rel_path}/${basename}.ico") + if(NOT EXISTS ${ICO}) + message(FATAL_ERROR "ico not found ${ICO}") + endif() + if(EXISTS ${DEST}) + file(REMOVE_RECURSE ${DEST}) + endif() + file(MAKE_DIRECTORY ${DEST}) + + execute_process( + COMMAND ${ICOTOOL} -x "../${ICO}" + WORKING_DIRECTORY ${DEST} + ) +endfunction() + +ico_extract("teraterm" "../..") +ico_extract("teraterm_3d" "../..") +ico_extract("teraterm_classic" "../..") +ico_extract("teraterm_flat" "../..") +ico_extract("tterm16" "../..") +ico_extract("tek" "../..") +ico_extract("tek16" "../..") +ico_extract("cygterm" "../../../../cygwin/cygterm") +ico_extract("vt" "../..") +ico_extract("vt_3d" "../..") +ico_extract("vt_classic" "../..") +ico_extract("vt_flat" "../..") +ico_extract("vt16" "../..") +ico_extract("ttmacr16" "../../../ttpmacro") +ico_extract("ttmacro" "../../../ttpmacro") +ico_extract("ttmacrof" "../../../ttpmacro") +ico_extract("ttmacro_3d" "../../../ttpmacro") +ico_extract("ttmacro_flat" "../../../ttpmacro") +ico_extract("ttsecure" "../../../../ttssh2/ttxssh") +ico_extract("ttsecure_classic" "../../../../ttssh2/ttxssh") +ico_extract("ttsecure_flat" "../../../../ttssh2/ttxssh") +ico_extract("ttsecure_green" "../../../../ttssh2/ttxssh") +ico_extract("ttsecure_yellow" "../../../../ttssh2/ttxssh")