From f4aa253c09b9923677a7b6abb91df1b4cc8cfa8c Mon Sep 17 00:00:00 2001 From: pranali-tirkhunde Date: Wed, 2 Mar 2022 12:49:37 +0530 Subject: [PATCH 01/66] feat: FDOPENSRCE 257- OpenSeaChest does not allow full control over Osprey SATA power modes. Adding support for a new Power Balance mode for a SATA drive i.e Power Balance Limited. --- include/openseachest_util_options.h | 4 ++++ .../C/openSeaChest/openSeaChest_PowerControl.c | 18 +++++++++++++++--- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/include/openseachest_util_options.h b/include/openseachest_util_options.h index 0d5cb7cc..1380d455 100644 --- a/include/openseachest_util_options.h +++ b/include/openseachest_util_options.h @@ -1461,11 +1461,15 @@ extern "C" //Seagate Power Balance options (SATA only since SAS can use the setPowerConsumption options) #define SEAGATE_POWER_BALANCE_FLAG powerBalanceFeature + #define POWER_BALANCE_MODE powerBalanceMode #define SEAGATE_POWER_BALANCE_ENABLE_FLAG powerBalanceEnable + #define SEAGATE_POWER_BALANCE_LIMITED_FLAG powerBalanceLimited #define SEAGATE_POWER_BALANCE_INFO_FLAG powerBalanceInfo #define SEAGATE_POWER_BALANCE_VARS \ + uint8_t POWER_BALANCE_MODE = 0;\ bool SEAGATE_POWER_BALANCE_FLAG = false;\ bool SEAGATE_POWER_BALANCE_ENABLE_FLAG = false;\ + bool SEAGATE_POWER_BALANCE_LIMITED_FLAG = false;\ bool SEAGATE_POWER_BALANCE_INFO_FLAG = false; #define SEAGATE_POWER_BALANCE_LONG_OPT_STRING "powerBalanceFeature" #define SEAGATE_POWER_BALANCE_LONG_OPT { SEAGATE_POWER_BALANCE_LONG_OPT_STRING, required_argument, NULL, 0 } diff --git a/utils/C/openSeaChest/openSeaChest_PowerControl.c b/utils/C/openSeaChest/openSeaChest_PowerControl.c index ec439bfe..ab9c68e0 100644 --- a/utils/C/openSeaChest/openSeaChest_PowerControl.c +++ b/utils/C/openSeaChest/openSeaChest_PowerControl.c @@ -339,12 +339,20 @@ int32_t main(int argc, char *argv[]) { SEAGATE_POWER_BALANCE_FLAG = true; SEAGATE_POWER_BALANCE_ENABLE_FLAG = true; + POWER_BALANCE_MODE = POWER_BAL_ENABLE; } else if (strcmp(optarg, "disable") == 0) { SEAGATE_POWER_BALANCE_FLAG = true; SEAGATE_POWER_BALANCE_ENABLE_FLAG = false; - } + POWER_BALANCE_MODE = POWER_BAL_DISABLE; + } + else if (strcmp(optarg, "limited") == 0) + { + SEAGATE_POWER_BALANCE_FLAG = true; + SEAGATE_POWER_BALANCE_LIMITED_FLAG = true; + POWER_BALANCE_MODE = POWER_BAL_LIMITED; + } else { print_Error_In_Cmd_Line_Args(SEAGATE_POWER_BALANCE_LONG_OPT_STRING, optarg); @@ -2117,7 +2125,7 @@ int32_t main(int argc, char *argv[]) } else { - switch (seagate_Set_Power_Balance(&deviceList[deviceIter], SEAGATE_POWER_BALANCE_ENABLE_FLAG)) + switch (seagate_Set_Power_Balance(&deviceList[deviceIter], POWER_BALANCE_MODE)) { case SUCCESS: if (VERBOSITY_QUIET < toolVerbosity) @@ -2126,7 +2134,11 @@ int32_t main(int argc, char *argv[]) { printf("Successfully enabled Seagate Power Balance!\n"); } - else + else if (SEAGATE_POWER_BALANCE_LIMITED_FLAG) + { + printf("Successfully limited Seagate Power Balance!\n"); + } + else { printf("Successfully disabled Seagate Power Balance!\n"); } From 7355ed92605fb20e37d243ec125feff2e2cd8b1e Mon Sep 17 00:00:00 2001 From: pranali-tirkhunde Date: Wed, 2 Mar 2022 13:02:17 +0530 Subject: [PATCH 02/66] Updating the latest heads for opensea-operations and opensea-transport. --- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 12987e43..79288eb0 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 12987e43b46ab426c65611ebd291bd4b444e6413 +Subproject commit 79288eb057403f58dfad85763df430536f74f50d diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 9e9b8b66..211893ea 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 9e9b8b663402d779a34158e29304050830fbbfb6 +Subproject commit 211893eac7fa136fc0888382cd97126ed4c5c6f8 From 5ef7c8d0364e75792819eec9263fb185296abddf Mon Sep 17 00:00:00 2001 From: pranali-tirkhunde Date: Thu, 3 Mar 2022 00:42:34 +0530 Subject: [PATCH 03/66] quick: updating the minor version of the PowerControl due to the changes added in previous commit. --- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- utils/C/openSeaChest/openSeaChest_PowerControl.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 79288eb0..a406500e 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 79288eb057403f58dfad85763df430536f74f50d +Subproject commit a406500e7dee9d4b90f360452c93a0b8a7855b7e diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 211893ea..eeec9394 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 211893eac7fa136fc0888382cd97126ed4c5c6f8 +Subproject commit eeec93942d0db27c71ff8e47066c32d7edc4f56a diff --git a/utils/C/openSeaChest/openSeaChest_PowerControl.c b/utils/C/openSeaChest/openSeaChest_PowerControl.c index ab9c68e0..b22eaf1a 100644 --- a/utils/C/openSeaChest/openSeaChest_PowerControl.c +++ b/utils/C/openSeaChest/openSeaChest_PowerControl.c @@ -35,7 +35,7 @@ // Global Variables // //////////////////////// const char *util_name = "openSeaChest_PowerControl"; -const char *buildVersion = "3.0.6"; +const char *buildVersion = "3.0.7"; //////////////////////////// // functions to declare // From 95a8c5c2be3120d88f4c426eeba65f857b3739f3 Mon Sep 17 00:00:00 2001 From: pranali-tirkhunde Date: Wed, 16 Mar 2022 12:13:32 +0530 Subject: [PATCH 04/66] quick: Adding a fix for FDOPENSRCE-260 [Add warning about formatting customer code drives] --- src/openseachest_util_options.c | 6 ++++++ utils/C/openSeaChest/openSeaChest_Format.c | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/src/openseachest_util_options.c b/src/openseachest_util_options.c index bbd2584b..a9e17485 100644 --- a/src/openseachest_util_options.c +++ b/src/openseachest_util_options.c @@ -2125,6 +2125,9 @@ void print_Format_Unit_Help(bool shortHelp) printf("\t\tfor progress until the format is complete.\n\n"); printf("\t\tWARNING: Format Unit may affect all LUNs/namespaces for devices\n"); printf("\t\t with multiple logical units or namespaces.\n\n"); + printf("\t\tWARNING: Customer unique firmware may have specific requirements that \n"); + printf("\t\t restrict sector sizes on some products. It may not be possible to format/ \n"); + printf("\t\t fast format to common sizes like 4K or 512B due to these customer requirements.\n\n"); } } @@ -2360,6 +2363,9 @@ void print_Show_Supported_Formats_Help(bool shortHelp) printf("\t\tand later) On SATA, this is the sector configuration log. (ACS4\n"); printf("\t\tand later) If the device does not report supported sector\n"); printf("\t\tsizes, please consult your product manual.\n\n"); + printf("\t\tWARNING: Customer unique firmware may have specific requirements that \n"); + printf("\t\t restrict sector sizes on some products. It may not be possible to format/ \n"); + printf("\t\t fast format to common sizes like 4K or 512B due to these customer requirements.\n\n"); } } diff --git a/utils/C/openSeaChest/openSeaChest_Format.c b/utils/C/openSeaChest/openSeaChest_Format.c index dafa2d7b..2e8df241 100644 --- a/utils/C/openSeaChest/openSeaChest_Format.c +++ b/utils/C/openSeaChest/openSeaChest_Format.c @@ -1104,6 +1104,13 @@ int32_t main(int argc, char *argv[]) uint32_t numberOfSectorSizes = get_Number_Of_Supported_Sector_Sizes(&deviceList[deviceIter]); uint32_t memSize = sizeof(supportedFormats) + sizeof(sectorSize) * numberOfSectorSizes; ptrSupportedFormats formats = C_CAST(ptrSupportedFormats, malloc(memSize)); + + if (VERBOSITY_QUIET < toolVerbosity) + { + printf("\nWARNING: Customer unique firmware may have specific requirements that \n"); + printf(" restrict sector sizes on some products. It may not be possible to format/ \n"); + printf(" fast format to common sizes like 4K or 512B due to these customer requirements.\n\n"); + } if (formats) { memset(formats, 0, memSize); From 85c88acdf1557295b97cef7a6f96dc1cb590349c Mon Sep 17 00:00:00 2001 From: ThunderEX Date: Fri, 11 Feb 2022 20:10:59 +0800 Subject: [PATCH 05/66] ci: add win32 on CirrusCI Signed-off-by: ThunderEX --- .cirrus.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.cirrus.yml b/.cirrus.yml index 03ebff77..c29ed3f8 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -10,3 +10,30 @@ task: release_script: - meson --buildtype=release builddir - ninja -C builddir + +task: + name: windowsservercore:visualstudio2019 + windows_container: + image: cirrusci/windowsservercore:visualstudio2019 + env: + CIRRUS_SHELL: powershell + + # Path to the solution file relative to the root of the project. + SOLUTION_FILE_PATH: "Make/VS.2019" + + # Configuration type to build. + # You can convert this to a build matrix if you need coverage of multiple configuration types. + # https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix + BUILD_CONFIGURATION: "Release" + + matrix: + - PLATFORM: "x86" + - PLATFORM: "x64" + submodules_script: git submodule update --init --recursive --progress + build_script: | + $vsWhere = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" + echo "vswhere: $vsWhere" + $msBuild = & $vswhere -products * -latest -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\MSBuild.exe | select-object -first 1 + echo "msbuild: $msBuild" + echo "$msBuild /m /p:Configuration=${env:BUILD_CONFIGURATION} ${env:SOLUTION_FILE_PATH} /p:Platform=${env:PLATFORM}" + & $msBuild /m /p:Configuration=${env:BUILD_CONFIGURATION} ${env:SOLUTION_FILE_PATH} /p:Platform=${env:PLATFORM} From 748b445ab41b8c31a049e467ec4f4c5b3fd2449a Mon Sep 17 00:00:00 2001 From: ThunderEX Date: Mon, 14 Feb 2022 21:13:17 +0800 Subject: [PATCH 06/66] ci: enable artifacts for meson build Signed-off-by: ThunderEX --- .github/workflows/meson.yml | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/.github/workflows/meson.yml b/.github/workflows/meson.yml index a2cb5aed..8104c602 100644 --- a/.github/workflows/meson.yml +++ b/.github/workflows/meson.yml @@ -42,18 +42,27 @@ jobs: os: windows-latest, cc: "gcc.exe", cxx: "g++.exe", + release_name: "win-x86_64-gcc", + release_extension: ".zip", + archive_command: "7z a -tzip -mmt" } - { name: "Windows Clang", os: windows-latest, cc: "clang.exe", cxx: "clang++.exe", + release_name: "win-x86_64-clang", + release_extension: ".zip", + archive_command: "7z a -tzip -mmt" } - { name: "Ubuntu GCC", os: ubuntu-latest, cc: "gcc", - cxx: "g++" + cxx: "g++", + release_name: "linux-x86_64-gcc", + release_extension: ".tar.xz", + archive_command: "tar cvfJ" } - { name: "Ubuntu Clang", @@ -96,9 +105,13 @@ jobs: Invoke-WebRequest -OutFile "LLVM.exe" ((Invoke-WebRequest "https://api.github.com/repos/llvm/llvm-project/releases/$($env:LLVM_RELID)").Content | ConvertFrom-Json | Select-Object -ExpandProperty assets | Where -Property name -Like "*win64.exe" | Select-Object -First 1).browser_download_url 7z x LLVM.exe -y -o"C:/Program Files/LLVM" + - name: Escape backslash in branch name + shell: bash + run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/} | tr / -)" >> $GITHUB_ENV + - name: Setting release name env: - DESTDIR: ${{ format('openSeaChest-{0}-{1}', github.ref_name, matrix.config.release_name) }} + DESTDIR: ${{ format('openSeaChest-{0}-{1}', env.BRANCH_NAME, matrix.config.release_name) }} run: | echo "DESTDIR=${DESTDIR}" >> $GITHUB_ENV shell: bash @@ -117,14 +130,18 @@ jobs: - name: Packing release env: ARCHIVE_EXT: ${{ matrix.config.release_extension }} - if: ${{ startsWith(github.ref, 'refs/tags/v') && matrix.config.publish_release }} run: | cd build ${{ matrix.config.archive_command }} "${DESTDIR}${ARCHIVE_EXT}" $DESTDIR shell: bash - + + - name: Uploading artifacts + uses: actions/upload-artifact@v2 + with: + path: ${{ format('./build/{0}{1}', env.DESTDIR, matrix.config.release_extension) }} + - name: Publish release - if: ${{ startsWith(github.ref, 'refs/tags/v') && matrix.config.publish_release }} + if: ${{ startsWith(github.ref, 'refs/tags/v') && matrix.config.publish_release }} uses: softprops/action-gh-release@v1 with: - files: ${{ format('./build/{0}{1}', env.DESTDIR, matrix.config.release_extension) }} + files: ${{ format('./build/{0}{1}', env.DESTDIR, matrix.config.release_extension) }} From 2e9fb9e50a4bc3f68b13cf0ede2d1713eba4820e Mon Sep 17 00:00:00 2001 From: ThunderEX Date: Wed, 2 Mar 2022 09:00:18 +0800 Subject: [PATCH 07/66] ci: enable gccWin build on GitHub Actions Signed-off-by: ThunderEX --- .github/workflows/c-cpp.yml | 66 ++++++++++++++++++++++++++++++++++--- Make/gccWin/Makefile.gccWin | 30 ++++++++--------- 2 files changed, 77 insertions(+), 19 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index eea0e5a5..ba7fb5ec 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -8,15 +8,73 @@ on: jobs: build: - - runs-on: ubuntu-latest + name: ${{ matrix.config.name }} + runs-on: ${{ matrix.config.os }} + strategy: + fail-fast: false # so that if one config fails, other won't be cancelled automatically + matrix: + config: + - { + name: "Windows GCC", + os: windows-latest, + builddir: "Make/gccWin", + makefile: "Makefile.gccWin", + release_name: "win-x86_64-gcc", + release_extension: ".zip", + archive_command: "7z a -tzip -mmt" + } + - { + name: "Ubuntu GCC", + os: ubuntu-latest, + builddir: "Make/gcc", + makefile: "Makefile", + release_name: "linux-x86_64-gcc", + release_extension: ".tar.xz", + archive_command: "tar cvfJ" + } + defaults: + run: + shell: bash steps: - uses: actions/checkout@v2 with: submodules: recursive + - name: Escape backslash in branch name + run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/} | tr / -)" >> $GITHUB_ENV + + - name: Setting release name + env: + DESTDIR: ${{ format('openSeaChest-{0}-{1}', env.BRANCH_NAME, matrix.config.release_name) }} + run: | + echo "DESTDIR=${DESTDIR}" >> $GITHUB_ENV + + - name: Add Mingw-w64 to path + if: startsWith(matrix.config.name, 'Windows GCC') + run: | + echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH + - name: make + working-directory: ${{ matrix.config.builddir }} run: | - cd Make/gcc - make release + make release -f ${{ matrix.config.makefile }} + + - name: Packing release + env: + ARCHIVE_EXT: ${{ matrix.config.release_extension }} + run: | + mkdir build + cd build + ${{ matrix.config.archive_command }} "${DESTDIR}${ARCHIVE_EXT}" ../${{ matrix.config.builddir }}/openseachest_exes + + - name: Uploading artifacts + uses: actions/upload-artifact@v2 + with: + path: ${{ format('./build/{0}{1}', env.DESTDIR, matrix.config.release_extension) }} + + # - name: Publish release + # if: ${{ startsWith(github.ref, 'refs/tags/v') && matrix.config.publish_release }} + # uses: softprops/action-gh-release@v1 + # with: + # files: ${{ format('./build/{0}{1}', env.DESTDIR, matrix.config.release_extension) }} diff --git a/Make/gccWin/Makefile.gccWin b/Make/gccWin/Makefile.gccWin index da7c1115..a8e02f88 100644 --- a/Make/gccWin/Makefile.gccWin +++ b/Make/gccWin/Makefile.gccWin @@ -315,7 +315,7 @@ ifneq (,$(findstring basics,$(BUILD_ALL))) $(BASICSOUTFILE): $(BASICSOBJS) opensea-libs mkoutputdir $(CC) $(BASICSOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(BASICSOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(BASICSOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(BASICSOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(BASICSOUTFILE) endif #security @@ -323,7 +323,7 @@ ifneq (,$(findstring security,$(BUILD_ALL))) $(SECURITYOUTFILE): $(SECURITYOBJS) opensea-libs mkoutputdir $(CC) $(SECURITYOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(SECURITYOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(SECURITYOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(SECURITYOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(SECURITYOUTFILE) endif @@ -332,7 +332,7 @@ ifneq (,$(findstring configure,$(BUILD_ALL))) $(CONFIGUREOUTFILE): $(CONFIGUREOBJS) opensea-libs mkoutputdir $(CC) $(CONFIGUREOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(CONFIGUREOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(CONFIGUREOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(CONFIGUREOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(CONFIGUREOUTFILE) endif #erase @@ -341,7 +341,7 @@ ifneq (,$(findstring erase,$(BUILD_ALL))) ifneq (,$(findstring DISABLE_TCG_SUPPORT,$(PROJECT_DEFINES))) $(CC) $(ERASEOBJS) $(PROJECT_DEFINES) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(ERASEOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(ERASEOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(ERASEOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(ERASEOUTFILE) else # $(CC) $(ERASEOBJS) $(TCGLFLAGS) -o $(FILE_OUTPUT_DIR)/$(ERASEOUTFILE) # $(STRIP) -s $(FILE_OUTPUT_DIR)/$(ERASEOUTFILE) @@ -353,7 +353,7 @@ ifneq (,$(findstring firmware,$(BUILD_ALL))) $(FIRMWAREOUTFILE): $(FIRMWAREOBJS) opensea-libs mkoutputdir $(CC) $(FIRMWAREOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(FIRMWAREOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(FIRMWAREOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(FIRMWAREOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(FIRMWAREOUTFILE) endif #format @@ -361,7 +361,7 @@ ifneq (,$(findstring format,$(BUILD_ALL))) $(FORMATOUTFILE): $(FORMATOBJS) opensea-libs mkoutputdir $(CC) $(FORMATOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(FORMATOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(FORMATOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(FORMATOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(FORMATOUTFILE) endif #generictests @@ -369,7 +369,7 @@ ifneq (,$(findstring generictests,$(BUILD_ALL))) $(GENERICTESTSOUTFILE) : $(GENERICTESTSOBJS) opensea-libs mkoutputdir $(CC) $(GENERICTESTSOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(GENERICTESTSOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(GENERICTESTSOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(GENERICTESTSOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(GENERICTESTSOUTFILE) endif #info @@ -377,7 +377,7 @@ ifneq (,$(findstring info,$(BUILD_ALL))) $(INFOOUTFILE): $(INFOOBJS) opensea-libs mkoutputdir $(CC) $(INFOOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(INFOOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(INFOOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(INFOOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(INFOOUTFILE) endif #logs @@ -385,7 +385,7 @@ ifneq (,$(findstring logs,$(BUILD_ALL))) $(LOGSOUTFILE): $(LOGSOBJS) opensea-libs mkoutputdir $(CC) $(LOGSOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(LOGSOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(LOGSOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(LOGSOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(LOGSOUTFILE) endif #nvme @@ -393,7 +393,7 @@ ifneq (,$(findstring nvme,$(BUILD_ALL))) $(NVMEOUTFILE): $(NVMEOBJS) opensea-libs mkoutputdir $(CC) $(NVMEOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(NVMEOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(NVMEOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(NVMEOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(NVMEOUTFILE) endif #powercontrol @@ -401,7 +401,7 @@ ifneq (,$(findstring powercontrol,$(BUILD_ALL))) $(POWERCONTROLOUTFILE) : $(POWERCONTROLOBJS) opensea-libs mkoutputdir $(CC) $(POWERCONTROLOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(POWERCONTROLOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(POWERCONTROLOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(POWERCONTROLOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(POWERCONTROLOUTFILE) endif #smart @@ -409,7 +409,7 @@ ifneq (,$(findstring smart,$(BUILD_ALL))) $(SMARTOUTFILE): $(SMARTOBJS) opensea-libs mkoutputdir $(CC) $(SMARTOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(SMARTOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(SMARTOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(SMARTOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(SMARTOUTFILE) endif #zbd @@ -417,7 +417,7 @@ ifneq (,$(findstring zbd,$(BUILD_ALL))) $(ZBDOUTFILE): $(ZBDOBJS) opensea-libs mkoutputdir $(CC) $(ZBDOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(ZBDOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(ZBDOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(ZBDOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(ZBDOUTFILE) endif #passthrough @@ -425,7 +425,7 @@ ifneq (,$(findstring passthrough,$(BUILD_ALL))) $(PASSTHROUGHTESTOUTFILE): $(PASSTHROUGHTESTOBJS) opensea-libs mkoutputdir $(CC) $(PASSTHROUGHTESTOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(PASSTHROUGHTESTOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(PASSTHROUGHTESTOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(PASSTHROUGHTESTOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(PASSTHROUGHTESTOUTFILE) endif #reservations @@ -433,7 +433,7 @@ ifneq (,$(findstring reservations,$(BUILD_ALL))) $(RESERVATIONSOUTFILE): $(RESERVATIONSOBJS) opensea-libs mkoutputdir $(CC) $(RESERVATIONSOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(RESERVATIONSOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(RESERVATIONSOUTFILE) - ./rename_seachest.sh $(FILE_OUTPUT_DIR)/$(RESERVATIONSOUTFILE) + sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(RESERVATIONSOUTFILE) endif %.o: %.c From e2c0b19012b54efe8ff90ce0ae4b8bd839cabaef Mon Sep 17 00:00:00 2001 From: ThunderEX Date: Wed, 2 Mar 2022 14:01:25 +0800 Subject: [PATCH 08/66] ci: for GCC, discard unused function during linking to reduce binary size Signed-off-by: ThunderEX --- Make/gcc/Makefile | 6 +++--- Make/gcc/Makefile.openSeaChest_firmware | 4 ++-- meson.build | 12 ++++++++++++ 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Make/gcc/Makefile b/Make/gcc/Makefile index 8d757f35..15292fe4 100644 --- a/Make/gcc/Makefile +++ b/Make/gcc/Makefile @@ -17,15 +17,15 @@ CC ?= gcc LIB_FILE_OUTPUT_DIR=lib STRIP ?= strip STRIPOPTS ?= -CFLAGS ?= -Wall -Wextra -c -std=gnu99 +CFLAGS ?= -Wall -Wextra -c -std=gnu99 -ffunction-sections -fdata-sections CFLAGS_I686 ?= -Wall -Wextra -c -m32 LFLAGS ?= \ - -Wall \ + -Wall -Wl,--gc-sections \ ../../opensea-operations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ ../../opensea-transport/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ ../../opensea-common/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a TCGLFLAGS ?= \ - -Wall \ + -Wall -Wl,--gc-sections \ ../../SeaCTCGOperations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libSeaCTCGOperations.a \ ../../SeaCTCG/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libSeaCTCG.a \ ../../opensea-operations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ diff --git a/Make/gcc/Makefile.openSeaChest_firmware b/Make/gcc/Makefile.openSeaChest_firmware index 799e9b11..486ab1b2 100644 --- a/Make/gcc/Makefile.openSeaChest_firmware +++ b/Make/gcc/Makefile.openSeaChest_firmware @@ -17,11 +17,11 @@ CC ?= gcc LIB_FILE_OUTPUT_DIR=lib STRIP ?= strip STRIPOPTS ?= -CFLAGS = -Wall -Wextra -c -std=gnu99 +CFLAGS = -Wall -Wextra -c -std=gnu99 -ffunction-sections -fdata-sections CFLAGS_I686 = -Wall -Wextra -c -m32 FWDLLFLAGS = \ - -Wall \ + -Wall -Wl,--gc-sections \ ../../opensea-operations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ ../../opensea-transport/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ ../../opensea-common/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a diff --git a/meson.build b/meson.build index c6e743ed..ad6d2004 100644 --- a/meson.build +++ b/meson.build @@ -2,6 +2,18 @@ project('openSeaChest', 'c', license: 'MPL-2.0', version: '2.0.2') c = meson.get_compiler('c') +if meson.get_compiler('c').get_id() == 'gcc' + add_global_arguments( + '-ffunction-sections', + '-fdata-sections', + language: 'c', + ) + add_global_link_arguments( + '-Wl,--gc-sections', + language: 'c', + ) +endif + if not get_option('tcg').enabled() add_project_arguments('-DDISABLE_TCG_SUPPORT', language : 'c') endif From 66e3910736fcb7dd30124be7730a17fdc1f7b4bb Mon Sep 17 00:00:00 2001 From: ThunderEX Date: Sat, 19 Mar 2022 23:09:59 +0800 Subject: [PATCH 09/66] ci: make use of exising variable in meson.build, thanks to @xbjfk Signed-off-by: ThunderEX --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index ad6d2004..c75b91ea 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('openSeaChest', 'c', license: 'MPL-2.0', version: '2.0.2') c = meson.get_compiler('c') -if meson.get_compiler('c').get_id() == 'gcc' +if c.get_id() == 'gcc' add_global_arguments( '-ffunction-sections', '-fdata-sections', From ed9254d672a165115d800c78c9182535bbddca24 Mon Sep 17 00:00:00 2001 From: ThunderEX Date: Wed, 23 Mar 2022 23:16:18 +0800 Subject: [PATCH 10/66] ci: per @vonericsen, discard unused functions for clang also Signed-off-by: ThunderEX --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c75b91ea..ce4c0caa 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('openSeaChest', 'c', license: 'MPL-2.0', version: '2.0.2') c = meson.get_compiler('c') -if c.get_id() == 'gcc' +if c.get_id() == 'gcc' or c.get_id() == 'clang' add_global_arguments( '-ffunction-sections', '-fdata-sections', From ee9de58b5650077f37647703c1a8460c9b0254ae Mon Sep 17 00:00:00 2001 From: Sam Zaydel Date: Wed, 30 Mar 2022 12:48:17 +0000 Subject: [PATCH 11/66] Fix compilation on illumos by avoiding c.get_id() in the meson build script --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index ce4c0caa..a2f25e2b 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('openSeaChest', 'c', license: 'MPL-2.0', version: '2.0.2') c = meson.get_compiler('c') -if c.get_id() == 'gcc' or c.get_id() == 'clang' +if not (target_machine.system() == 'sunos') and (c.get_id() == 'gcc' or c.get_id() == 'clang') add_global_arguments( '-ffunction-sections', '-fdata-sections', From 3c3f7321d7ff742d9535acd4d24bb95b83f4cc25 Mon Sep 17 00:00:00 2001 From: johnbent Date: Wed, 30 Mar 2022 14:02:21 -0600 Subject: [PATCH 12/66] adding empty template directory --- .github/ISSUE_TEMPLATE/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/.gitkeep diff --git a/.github/ISSUE_TEMPLATE/.gitkeep b/.github/ISSUE_TEMPLATE/.gitkeep new file mode 100644 index 00000000..e69de29b From 34bbaa644fd6182701573df184ac8adf3a727e04 Mon Sep 17 00:00:00 2001 From: johnbent Date: Wed, 30 Mar 2022 14:03:53 -0600 Subject: [PATCH 13/66] trying to restore default New Issue behavior --- .github/ISSUE_TEMPLATE/config.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..e69de29b From 1dc037c16af7d7a9a078d2a05fa589a45589514f Mon Sep 17 00:00:00 2001 From: johnbent Date: Wed, 30 Mar 2022 15:30:16 -0600 Subject: [PATCH 14/66] Trying to restore the default New Issue behavior --- .github/ISSUE_TEMPLATE/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index e69de29b..0086358d 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: true From 59b596f4f1a0d0f334d007fdf5ceb738d5fd3793 Mon Sep 17 00:00:00 2001 From: johnbent Date: Wed, 30 Mar 2022 15:40:09 -0600 Subject: [PATCH 15/66] Removing the empty file approach which didn't work --- .github/ISSUE_TEMPLATE/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/.gitkeep diff --git a/.github/ISSUE_TEMPLATE/.gitkeep b/.github/ISSUE_TEMPLATE/.gitkeep deleted file mode 100644 index e69de29b..00000000 From e3776356960303179bc7d4b0f4d5d9d7ec74641f Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 14 Apr 2022 13:27:15 -0600 Subject: [PATCH 16/66] lib: pointing to latest develop libs Pointing to latest develop libs post release branch finish and any necessary changes/merges have been resolved. Signed-off-by: Tyler Erickson --- subprojects/opensea-common | 2 +- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/subprojects/opensea-common b/subprojects/opensea-common index d3531976..0bebc1ca 160000 --- a/subprojects/opensea-common +++ b/subprojects/opensea-common @@ -1 +1 @@ -Subproject commit d353197654b11e913a0acb894521f3c037da7eff +Subproject commit 0bebc1ca22d0ea93d67c63a1917b488dea097a18 diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index a406500e..7ea18ce1 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit a406500e7dee9d4b90f360452c93a0b8a7855b7e +Subproject commit 7ea18ce1396d62ab4b21975ee0c88640f72c017e diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index eeec9394..f53c58f1 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit eeec93942d0db27c71ff8e47066c32d7edc4f56a +Subproject commit f53c58f12f75b44ee1167c76c6c287b0348d0643 From a94973562165cf5198e5f9fbdbbea9a4e8ce53a9 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 14 Apr 2022 19:07:15 -0600 Subject: [PATCH 17/66] make: Updating paths to subprojects/ directory Updating paths in makefiles and project/solution files to point to subprojects/ directory to find opensea-*libs Signed-off-by: Tyler Erickson --- Make/UEFI/copy_files.sh | 6 +- Make/VS.2013/OpenSeaChest.sln | 12 +- .../OpenSeaChest_Basics.vcxproj | 32 ++--- .../OpenSeaChest_Configure.vcxproj | 32 ++--- .../OpenSeaChest_Erase.vcxproj | 32 ++--- .../OpenSeaChest_Firmware.vcxproj | 32 ++--- .../OpenSeaChest_Format.c.vcxproj | 32 ++--- .../OpenSeaChest_GenericTests.c.vcxproj | 32 ++--- .../OpenSeaChest_Info.vcxproj | 32 ++--- .../OpenSeaChest_Logs.vcxproj | 32 ++--- .../OpenSeaChest_PowerControl.c.vcxproj | 32 ++--- .../OpenSeaChest_SMART.vcxproj | 32 ++--- .../OpenSeaChest_Sample.vcxproj | 32 ++--- .../OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj | 32 ++--- Make/VS.2015/OpenSeaChest.sln | 12 +- .../OpenSeaChest_Basics.vcxproj | 32 ++--- .../OpenSeaChest_Configure.vcxproj | 32 ++--- .../OpenSeaChest_Erase.vcxproj | 32 ++--- .../OpenSeaChest_Firmware.vcxproj | 32 ++--- .../OpenSeaChest_Format.vcxproj | 32 ++--- .../OpenSeaChest_GenericTests.vcxproj | 32 ++--- .../OpenSeaChest_Info.vcxproj | 32 ++--- .../OpenSeaChest_Logs.vcxproj | 32 ++--- .../OpenSeaChest_NVMe.vcxproj | 32 ++--- .../OpenSeaChest_PassthroughTest.vcxproj | 32 ++--- .../OpenSeaChest_PowerControl.vcxproj | 32 ++--- .../OpenSeaChest_Reservations.vcxproj | 32 ++--- .../OpenSeaChest_SMART.vcxproj | 32 ++--- .../OpenSeaChest_Sample.vcxproj | 32 ++--- .../OpenSeaChest_Security.vcxproj | 32 ++--- .../OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj | 32 ++--- Make/VS.2017/OpenSeaChest.sln | 12 +- .../OpenSeaChest_Basics.vcxproj | 64 ++++----- .../OpenSeaChest_Configure.vcxproj | 64 ++++----- .../OpenSeaChest_Erase.vcxproj | 64 ++++----- .../OpenSeaChest_Firmware.vcxproj | 64 ++++----- .../OpenSeaChest_Format.vcxproj | 64 ++++----- .../OpenSeaChest_GenericTests.vcxproj | 64 ++++----- .../OpenSeaChest_Info.vcxproj | 64 ++++----- .../OpenSeaChest_Logs.vcxproj | 64 ++++----- .../OpenSeaChest_NVMe.vcxproj | 64 ++++----- .../OpenSeaChest_PassthroughTest.vcxproj | 64 ++++----- .../OpenSeaChest_PowerControl.vcxproj | 64 ++++----- .../OpenSeaChest_Reservations.vcxproj | 64 ++++----- .../OpenSeaChest_SMART.vcxproj | 64 ++++----- .../OpenSeaChest_Sample.vcxproj | 64 ++++----- .../OpenSeaChest_Security.vcxproj | 64 ++++----- .../OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj | 64 ++++----- Make/VS.2019/OpenSeaChest.sln | 12 +- .../OpenSeaChest_Basics.vcxproj | 64 ++++----- .../OpenSeaChest_Configure.vcxproj | 64 ++++----- .../OpenSeaChest_Erase.vcxproj | 64 ++++----- .../OpenSeaChest_Firmware.vcxproj | 64 ++++----- .../OpenSeaChest_Format.vcxproj | 64 ++++----- .../OpenSeaChest_GenericTests.vcxproj | 64 ++++----- .../OpenSeaChest_Info.vcxproj | 64 ++++----- .../OpenSeaChest_Logs.vcxproj | 64 ++++----- .../OpenSeaChest_NVMe.vcxproj | 64 ++++----- .../OpenSeaChest_PassthroughTest.vcxproj | 64 ++++----- .../OpenSeaChest_PowerControl.vcxproj | 64 ++++----- .../OpenSeaChest_Reservations.vcxproj | 64 ++++----- .../OpenSeaChest_SMART.vcxproj | 64 ++++----- .../OpenSeaChest_Sample.vcxproj | 64 ++++----- .../OpenSeaChest_Security.vcxproj | 64 ++++----- .../OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj | 64 ++++----- Make/gcc/Makefile | 36 ++--- Make/gcc/Makefile.openSeaChest_firmware | 135 ------------------ Make/gccWin/Makefile.gccWin | 26 ++-- Make/vmware/Makefile | 28 ++-- Make/vmware/Makefile.openSeaChest_firmware | 18 +-- opensea-common | 1 - opensea-operations | 1 - opensea-transport | 1 - wingetopt | 1 - 74 files changed, 1553 insertions(+), 1692 deletions(-) delete mode 100644 Make/gcc/Makefile.openSeaChest_firmware delete mode 120000 opensea-common delete mode 120000 opensea-operations delete mode 120000 opensea-transport delete mode 120000 wingetopt diff --git a/Make/UEFI/copy_files.sh b/Make/UEFI/copy_files.sh index 15d22f5c..3d848d22 100755 --- a/Make/UEFI/copy_files.sh +++ b/Make/UEFI/copy_files.sh @@ -26,9 +26,9 @@ if [ -d "$1" ]; then #copy UEFI makefiles for openSeaChest cp -r "$openSeaChestBaseDir/Make/UEFI/openSeaChest"* "$openSeaChestPkgDir" #now copy opensea-libs - "$openSeaChestBaseDir"/opensea-common/Make/UEFI/copy_files.sh "$1" - "$openSeaChestBaseDir"/opensea-transport/Make/UEFI/copy_files.sh "$1" - "$openSeaChestBaseDir"/opensea-operations/Make/UEFI/copy_files.sh "$1" + "$openSeaChestBaseDir"/subprojects/opensea-common/Make/UEFI/copy_files.sh "$1" + "$openSeaChestBaseDir"/subprojects/opensea-transport/Make/UEFI/copy_files.sh "$1" + "$openSeaChestBaseDir"/subprojects/opensea-operations/Make/UEFI/copy_files.sh "$1" else echo "Cannot find specified path: $1" diff --git a/Make/VS.2013/OpenSeaChest.sln b/Make/VS.2013/OpenSeaChest.sln index f923d490..c031d8bb 100644 --- a/Make/VS.2013/OpenSeaChest.sln +++ b/Make/VS.2013/OpenSeaChest.sln @@ -11,27 +11,27 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OpenSeaChest_Basics", "Open {02F57AFA-58A6-49D3-8F17-C658CDE630BF} = {02F57AFA-58A6-49D3-8F17-C658CDE630BF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Win_getopt", "..\..\wingetopt\VS.2013\Win_getopt.vcxproj", "{621B44CE-B314-4E05-B214-5DC70F2B4798}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Win_getopt", "..\..\subprojects\wingetopt\VS.2013\Win_getopt.vcxproj", "{621B44CE-B314-4E05-B214-5DC70F2B4798}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-common", "..\..\opensea-common\Make\VS.2013\opensea-common\opensea-common\opensea-common.vcxproj", "{02F57AFA-58A6-49D3-8F17-C658CDE630BF}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-common", "..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\opensea-common\opensea-common.vcxproj", "{02F57AFA-58A6-49D3-8F17-C658CDE630BF}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transport-Lib", "..\..\opensea-transport\Make\VS.2013\opensea-transport\opensea-transport\opensea-transport.vcxproj", "{394BD68F-7AF9-4C27-9B40-5819F24A5B64}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transport-Lib", "..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\opensea-transport\opensea-transport.vcxproj", "{394BD68F-7AF9-4C27-9B40-5819F24A5B64}" ProjectSection(ProjectDependencies) = postProject {02F57AFA-58A6-49D3-8F17-C658CDE630BF} = {02F57AFA-58A6-49D3-8F17-C658CDE630BF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transport-DLL", "..\..\opensea-transport\Make\VS.2013\opensea-transport\opensea-transport-DLL\opensea-transport-DLL.vcxproj", "{EC785B2D-14C3-4AAF-AF33-595BFC96343C}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transport-DLL", "..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\opensea-transport-DLL\opensea-transport-DLL.vcxproj", "{EC785B2D-14C3-4AAF-AF33-595BFC96343C}" ProjectSection(ProjectDependencies) = postProject {02F57AFA-58A6-49D3-8F17-C658CDE630BF} = {02F57AFA-58A6-49D3-8F17-C658CDE630BF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operations-Lib", "..\..\opensea-operations\Make\VS.2013\opensea-operations\opensea-operations\opensea-operations.vcxproj", "{9F3EACCC-FD87-407F-81B3-51F67C463106}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operations-Lib", "..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\opensea-operations\opensea-operations.vcxproj", "{9F3EACCC-FD87-407F-81B3-51F67C463106}" ProjectSection(ProjectDependencies) = postProject {394BD68F-7AF9-4C27-9B40-5819F24A5B64} = {394BD68F-7AF9-4C27-9B40-5819F24A5B64} {02F57AFA-58A6-49D3-8F17-C658CDE630BF} = {02F57AFA-58A6-49D3-8F17-C658CDE630BF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operations-DLL", "..\..\opensea-operations\Make\VS.2013\opensea-operations\opensea-operations-DLL\opensea-operations-DLL.vcxproj", "{D73F51F3-3C0C-4E82-A0C2-10823534A5D8}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operations-DLL", "..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\opensea-operations-DLL\opensea-operations-DLL.vcxproj", "{D73F51F3-3C0C-4E82-A0C2-10823534A5D8}" ProjectSection(ProjectDependencies) = postProject {EC785B2D-14C3-4AAF-AF33-595BFC96343C} = {EC785B2D-14C3-4AAF-AF33-595BFC96343C} {02F57AFA-58A6-49D3-8F17-C658CDE630BF} = {02F57AFA-58A6-49D3-8F17-C658CDE630BF} diff --git a/Make/VS.2013/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj b/Make/VS.2013/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj index 87182a53..f5b2957c 100644 --- a/Make/VS.2013/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj +++ b/Make/VS.2013/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj @@ -176,13 +176,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -196,14 +196,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -217,13 +217,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -237,14 +237,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -260,7 +260,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -268,7 +268,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -284,7 +284,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -293,7 +293,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -309,7 +309,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -317,7 +317,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -333,7 +333,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -342,7 +342,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 diff --git a/Make/VS.2013/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj b/Make/VS.2013/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj index 632fba04..080f1bcb 100644 --- a/Make/VS.2013/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj +++ b/Make/VS.2013/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj @@ -176,13 +176,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -196,14 +196,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -217,13 +217,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -237,14 +237,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -260,7 +260,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -268,7 +268,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -284,7 +284,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -293,7 +293,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -309,7 +309,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -317,7 +317,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -333,7 +333,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -342,7 +342,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 diff --git a/Make/VS.2013/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj b/Make/VS.2013/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj index 1adf8978..f0c60e27 100644 --- a/Make/VS.2013/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj +++ b/Make/VS.2013/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj @@ -176,7 +176,7 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;DISABLE_TCG_SUPPORT;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -184,7 +184,7 @@ true RequireAdministrator 6.0 - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -196,7 +196,7 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;DISABLE_TCG_SUPPORT;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug @@ -205,7 +205,7 @@ true RequireAdministrator 6.0 - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -217,7 +217,7 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;DISABLE_TCG_SUPPORT;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -225,7 +225,7 @@ true RequireAdministrator 6.0 - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -237,7 +237,7 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;DISABLE_TCG_SUPPORT;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug @@ -246,7 +246,7 @@ true RequireAdministrator 6.0 - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -260,7 +260,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;DISABLE_TCG_SUPPORT;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -270,7 +270,7 @@ true RequireAdministrator 6.0 - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -284,7 +284,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;DISABLE_TCG_SUPPORT;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -295,7 +295,7 @@ true RequireAdministrator 6.0 - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -309,7 +309,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;DISABLE_TCG_SUPPORT;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -319,7 +319,7 @@ true RequireAdministrator 6.0 - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -333,7 +333,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;DISABLE_TCG_SUPPORT;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -344,7 +344,7 @@ true RequireAdministrator 6.0 - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) diff --git a/Make/VS.2013/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj b/Make/VS.2013/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj index 888cab66..3b589b7c 100644 --- a/Make/VS.2013/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj +++ b/Make/VS.2013/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj @@ -176,13 +176,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) 6.0 RequireAdministrator @@ -196,14 +196,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) 6.0 RequireAdministrator @@ -217,13 +217,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) 6.0 RequireAdministrator @@ -237,14 +237,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) 6.0 RequireAdministrator @@ -260,7 +260,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -268,7 +268,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) 6.0 RequireAdministrator @@ -284,7 +284,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -293,7 +293,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) 6.0 RequireAdministrator @@ -309,7 +309,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -317,7 +317,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) 6.0 RequireAdministrator @@ -333,7 +333,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -342,7 +342,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) 6.0 RequireAdministrator diff --git a/Make/VS.2013/OpenSeaChest_Format.c/OpenSeaChest_Format.c.vcxproj b/Make/VS.2013/OpenSeaChest_Format.c/OpenSeaChest_Format.c.vcxproj index e143d685..21ceb0bd 100644 --- a/Make/VS.2013/OpenSeaChest_Format.c/OpenSeaChest_Format.c.vcxproj +++ b/Make/VS.2013/OpenSeaChest_Format.c/OpenSeaChest_Format.c.vcxproj @@ -176,13 +176,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -196,14 +196,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -217,13 +217,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -237,14 +237,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -260,7 +260,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -268,7 +268,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -284,7 +284,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -293,7 +293,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -309,7 +309,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -317,7 +317,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -333,7 +333,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -342,7 +342,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 diff --git a/Make/VS.2013/OpenSeaChest_GenericTests.c/OpenSeaChest_GenericTests.c.vcxproj b/Make/VS.2013/OpenSeaChest_GenericTests.c/OpenSeaChest_GenericTests.c.vcxproj index 37f9e2a1..532d2348 100644 --- a/Make/VS.2013/OpenSeaChest_GenericTests.c/OpenSeaChest_GenericTests.c.vcxproj +++ b/Make/VS.2013/OpenSeaChest_GenericTests.c/OpenSeaChest_GenericTests.c.vcxproj @@ -176,13 +176,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -196,14 +196,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -217,13 +217,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -237,14 +237,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -260,7 +260,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -268,7 +268,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -284,7 +284,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -293,7 +293,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -309,7 +309,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -317,7 +317,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -333,7 +333,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -342,7 +342,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 diff --git a/Make/VS.2013/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj b/Make/VS.2013/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj index e6331e96..91bcd9b3 100644 --- a/Make/VS.2013/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj +++ b/Make/VS.2013/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj @@ -176,13 +176,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) HighestAvailable 6.0 @@ -196,14 +196,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) HighestAvailable 6.0 @@ -217,13 +217,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) HighestAvailable 6.0 @@ -237,14 +237,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) HighestAvailable 6.0 @@ -260,7 +260,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -268,7 +268,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) HighestAvailable 6.0 @@ -284,7 +284,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -293,7 +293,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) HighestAvailable 6.0 @@ -309,7 +309,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -317,7 +317,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) HighestAvailable 6.0 @@ -333,7 +333,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -342,7 +342,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) HighestAvailable 6.0 diff --git a/Make/VS.2013/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj b/Make/VS.2013/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj index 3e663cab..2df90091 100644 --- a/Make/VS.2013/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj +++ b/Make/VS.2013/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj @@ -164,13 +164,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH CompileAsC true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -182,13 +182,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH CompileAsC true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -200,14 +200,14 @@ Level3 Disabled true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH CompileAsC MultiThreadedDebug true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -219,14 +219,14 @@ Level3 Disabled true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH CompileAsC MultiThreadedDebug true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -240,7 +240,7 @@ true true true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH CompileAsC @@ -248,7 +248,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -262,7 +262,7 @@ true true true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH CompileAsC @@ -270,7 +270,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -284,7 +284,7 @@ true true true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH CompileAsC MultiThreaded @@ -293,7 +293,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -307,7 +307,7 @@ true true true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH CompileAsC MultiThreaded @@ -316,7 +316,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2013/OpenSeaChest_PowerControl.c/OpenSeaChest_PowerControl.c.vcxproj b/Make/VS.2013/OpenSeaChest_PowerControl.c/OpenSeaChest_PowerControl.c.vcxproj index 64d729e0..9b7b16d4 100644 --- a/Make/VS.2013/OpenSeaChest_PowerControl.c/OpenSeaChest_PowerControl.c.vcxproj +++ b/Make/VS.2013/OpenSeaChest_PowerControl.c/OpenSeaChest_PowerControl.c.vcxproj @@ -176,13 +176,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -196,14 +196,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -217,13 +217,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -237,14 +237,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -260,7 +260,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -268,7 +268,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -284,7 +284,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -293,7 +293,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -309,7 +309,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -317,7 +317,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -333,7 +333,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -342,7 +342,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 diff --git a/Make/VS.2013/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj b/Make/VS.2013/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj index 7c34e58b..062459f6 100644 --- a/Make/VS.2013/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj +++ b/Make/VS.2013/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj @@ -176,13 +176,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -196,14 +196,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -217,13 +217,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -237,14 +237,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -260,7 +260,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -268,7 +268,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -284,7 +284,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -293,7 +293,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -309,7 +309,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -317,7 +317,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -333,7 +333,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -342,7 +342,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 diff --git a/Make/VS.2013/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj b/Make/VS.2013/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj index 19566bee..98f51a9f 100644 --- a/Make/VS.2013/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj +++ b/Make/VS.2013/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj @@ -176,13 +176,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -196,14 +196,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -217,13 +217,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -237,14 +237,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -260,7 +260,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -268,7 +268,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -284,7 +284,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -293,7 +293,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -309,7 +309,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -317,7 +317,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -333,7 +333,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -342,7 +342,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 diff --git a/Make/VS.2013/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj b/Make/VS.2013/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj index 48c4d238..3a1ddd73 100644 --- a/Make/VS.2013/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj +++ b/Make/VS.2013/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj @@ -176,13 +176,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -196,14 +196,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -217,13 +217,13 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -237,14 +237,14 @@ Disabled STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;_DEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreadedDebug Console true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -260,7 +260,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -268,7 +268,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -284,7 +284,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -293,7 +293,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -309,7 +309,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC @@ -317,7 +317,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -333,7 +333,7 @@ true STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_NVME_PASSTHROUGH;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) true - ..\..\..\wingetopt\src;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor + ..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor CompileAsC MultiThreaded @@ -342,7 +342,7 @@ true true true - ..\..\..\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2013\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2013\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2013\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2013\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 diff --git a/Make/VS.2015/OpenSeaChest.sln b/Make/VS.2015/OpenSeaChest.sln index 3d1c2d7d..4412bd82 100644 --- a/Make/VS.2015/OpenSeaChest.sln +++ b/Make/VS.2015/OpenSeaChest.sln @@ -3,28 +3,28 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Win_getopt", "..\..\wingetopt\VS.2015\Win_getopt.vcxproj", "{621B44CE-B314-4E05-B214-5DC70F2B4798}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Win_getopt", "..\..\subprojects\wingetopt\VS.2015\Win_getopt.vcxproj", "{621B44CE-B314-4E05-B214-5DC70F2B4798}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-common", "..\..\opensea-common\Make\VS.2015\opensea-common\opensea-common\opensea-common.vcxproj", "{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-common", "..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\opensea-common\opensea-common.vcxproj", "{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operations-Lib", "..\..\opensea-operations\Make\VS.2015\opensea-operations\opensea-operations\opensea-operations.vcxproj", "{A0771494-8717-48AB-A0E5-49191252FF2C}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operations-Lib", "..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\opensea-operations\opensea-operations.vcxproj", "{A0771494-8717-48AB-A0E5-49191252FF2C}" ProjectSection(ProjectDependencies) = postProject {7DAC7F63-E808-47FD-BEEB-33E4A870008B} = {7DAC7F63-E808-47FD-BEEB-33E4A870008B} {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operations-DLL", "..\..\opensea-operations\Make\VS.2015\opensea-operations\opensea-operations-DLL\opensea-operations-DLL.vcxproj", "{D73F51F3-3C0C-4E82-A0C2-10823534A5D8}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operations-DLL", "..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\opensea-operations-DLL\opensea-operations-DLL.vcxproj", "{D73F51F3-3C0C-4E82-A0C2-10823534A5D8}" ProjectSection(ProjectDependencies) = postProject {EC785B2D-14C3-4AAF-AF33-595BFC96343C} = {EC785B2D-14C3-4AAF-AF33-595BFC96343C} {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transport-Lib", "..\..\opensea-transport\Make\VS.2015\opensea-transport\opensea-transport\opensea-transport.vcxproj", "{7DAC7F63-E808-47FD-BEEB-33E4A870008B}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transport-Lib", "..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\opensea-transport\opensea-transport.vcxproj", "{7DAC7F63-E808-47FD-BEEB-33E4A870008B}" ProjectSection(ProjectDependencies) = postProject {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transport-DLL", "..\..\opensea-transport\Make\VS.2015\opensea-transport\opensea-transport-DLL\opensea-transport-DLL.vcxproj", "{EC785B2D-14C3-4AAF-AF33-595BFC96343C}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transport-DLL", "..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\opensea-transport-DLL\opensea-transport-DLL.vcxproj", "{EC785B2D-14C3-4AAF-AF33-595BFC96343C}" ProjectSection(ProjectDependencies) = postProject {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} EndProjectSection diff --git a/Make/VS.2015/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj b/Make/VS.2015/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj index 4ce90547..2be2ed23 100644 --- a/Make/VS.2015/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj +++ b/Make/VS.2015/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj @@ -159,12 +159,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -176,13 +176,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -194,12 +194,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -211,13 +211,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -231,14 +231,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -252,7 +252,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -260,7 +260,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -274,14 +274,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -295,7 +295,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -303,7 +303,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2015/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj b/Make/VS.2015/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj index dc122f43..ed42be05 100644 --- a/Make/VS.2015/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj +++ b/Make/VS.2015/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj @@ -143,12 +143,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -160,13 +160,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -178,12 +178,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -195,13 +195,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -215,14 +215,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -236,7 +236,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -244,7 +244,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -258,14 +258,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -279,7 +279,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -287,7 +287,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2015/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj b/Make/VS.2015/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj index 2ffdf3e3..3e444c85 100644 --- a/Make/VS.2015/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj +++ b/Make/VS.2015/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj @@ -143,12 +143,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -160,13 +160,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -178,12 +178,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -195,13 +195,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -215,14 +215,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -236,7 +236,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -244,7 +244,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -258,14 +258,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -279,7 +279,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -287,7 +287,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2015/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj b/Make/VS.2015/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj index 7ed5714e..1a13b1eb 100644 --- a/Make/VS.2015/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj +++ b/Make/VS.2015/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj @@ -161,7 +161,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Console @@ -170,7 +170,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -180,7 +180,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug @@ -190,7 +190,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -200,7 +200,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Console @@ -209,7 +209,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -219,7 +219,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug @@ -229,7 +229,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -241,7 +241,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) true @@ -250,7 +250,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -262,7 +262,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded @@ -272,7 +272,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -284,7 +284,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) true @@ -293,7 +293,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -305,7 +305,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded @@ -315,7 +315,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) diff --git a/Make/VS.2015/OpenSeaChest_Format/OpenSeaChest_Format.vcxproj b/Make/VS.2015/OpenSeaChest_Format/OpenSeaChest_Format.vcxproj index a116f71c..dfe1eb78 100644 --- a/Make/VS.2015/OpenSeaChest_Format/OpenSeaChest_Format.vcxproj +++ b/Make/VS.2015/OpenSeaChest_Format/OpenSeaChest_Format.vcxproj @@ -159,12 +159,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -176,13 +176,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -194,12 +194,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -211,13 +211,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -231,14 +231,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -252,7 +252,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -260,7 +260,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -274,14 +274,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -295,7 +295,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -303,7 +303,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2015/OpenSeaChest_GenericTests/OpenSeaChest_GenericTests.vcxproj b/Make/VS.2015/OpenSeaChest_GenericTests/OpenSeaChest_GenericTests.vcxproj index e58545c2..4ff5cbdf 100644 --- a/Make/VS.2015/OpenSeaChest_GenericTests/OpenSeaChest_GenericTests.vcxproj +++ b/Make/VS.2015/OpenSeaChest_GenericTests/OpenSeaChest_GenericTests.vcxproj @@ -159,12 +159,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -176,13 +176,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -194,12 +194,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -211,13 +211,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -231,14 +231,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -252,7 +252,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -260,7 +260,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -274,14 +274,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -295,7 +295,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -303,7 +303,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2015/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj b/Make/VS.2015/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj index f257a4c3..d0117cd9 100644 --- a/Make/VS.2015/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj +++ b/Make/VS.2015/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj @@ -161,7 +161,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Console @@ -170,7 +170,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -180,7 +180,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug @@ -190,7 +190,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -200,7 +200,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Console @@ -209,7 +209,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -219,7 +219,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug @@ -229,7 +229,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -241,7 +241,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) true @@ -250,7 +250,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -262,7 +262,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded @@ -272,7 +272,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -284,7 +284,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) true @@ -293,7 +293,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -305,7 +305,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded @@ -315,7 +315,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) diff --git a/Make/VS.2015/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj b/Make/VS.2015/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj index b19d51a6..af180d95 100644 --- a/Make/VS.2015/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj +++ b/Make/VS.2015/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj @@ -159,12 +159,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -176,13 +176,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -194,12 +194,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -211,13 +211,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -231,14 +231,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -252,7 +252,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -260,7 +260,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -274,14 +274,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -295,7 +295,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -303,7 +303,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2015/OpenSeaChest_NVMe/OpenSeaChest_NVMe.vcxproj b/Make/VS.2015/OpenSeaChest_NVMe/OpenSeaChest_NVMe.vcxproj index 4987444d..3dd8c59f 100644 --- a/Make/VS.2015/OpenSeaChest_NVMe/OpenSeaChest_NVMe.vcxproj +++ b/Make/VS.2015/OpenSeaChest_NVMe/OpenSeaChest_NVMe.vcxproj @@ -206,7 +206,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -214,7 +214,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -229,7 +229,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -237,7 +237,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -250,13 +250,13 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -269,13 +269,13 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -290,14 +290,14 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -312,14 +312,14 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -332,12 +332,12 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -350,12 +350,12 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2015/OpenSeaChest_PassthroughTest/OpenSeaChest_PassthroughTest.vcxproj b/Make/VS.2015/OpenSeaChest_PassthroughTest/OpenSeaChest_PassthroughTest.vcxproj index 34d61ad5..179d5819 100644 --- a/Make/VS.2015/OpenSeaChest_PassthroughTest/OpenSeaChest_PassthroughTest.vcxproj +++ b/Make/VS.2015/OpenSeaChest_PassthroughTest/OpenSeaChest_PassthroughTest.vcxproj @@ -160,12 +160,12 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -178,13 +178,13 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -197,12 +197,12 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -215,13 +215,13 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -236,14 +236,14 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -258,7 +258,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -266,7 +266,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -281,14 +281,14 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -303,7 +303,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -311,7 +311,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2015/OpenSeaChest_PowerControl/OpenSeaChest_PowerControl.vcxproj b/Make/VS.2015/OpenSeaChest_PowerControl/OpenSeaChest_PowerControl.vcxproj index 567f0bd6..25c9b054 100644 --- a/Make/VS.2015/OpenSeaChest_PowerControl/OpenSeaChest_PowerControl.vcxproj +++ b/Make/VS.2015/OpenSeaChest_PowerControl/OpenSeaChest_PowerControl.vcxproj @@ -159,12 +159,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -176,13 +176,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -194,12 +194,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -211,13 +211,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -231,14 +231,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -252,7 +252,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -260,7 +260,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -274,14 +274,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -295,7 +295,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -303,7 +303,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2015/OpenSeaChest_Reservations/OpenSeaChest_Reservations.vcxproj b/Make/VS.2015/OpenSeaChest_Reservations/OpenSeaChest_Reservations.vcxproj index e26c62aa..ba270a25 100644 --- a/Make/VS.2015/OpenSeaChest_Reservations/OpenSeaChest_Reservations.vcxproj +++ b/Make/VS.2015/OpenSeaChest_Reservations/OpenSeaChest_Reservations.vcxproj @@ -159,12 +159,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -176,13 +176,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -194,12 +194,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -211,13 +211,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -231,14 +231,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -252,7 +252,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -260,7 +260,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -274,14 +274,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -295,7 +295,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -303,7 +303,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2015/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj b/Make/VS.2015/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj index dffcbacb..78c971e1 100644 --- a/Make/VS.2015/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj +++ b/Make/VS.2015/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj @@ -161,7 +161,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Console @@ -170,7 +170,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -180,7 +180,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug @@ -190,7 +190,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -200,7 +200,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Console @@ -209,7 +209,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -219,7 +219,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug @@ -229,7 +229,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -241,7 +241,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) true @@ -250,7 +250,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -262,7 +262,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded @@ -272,7 +272,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -284,7 +284,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) true @@ -293,7 +293,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) @@ -305,7 +305,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded @@ -315,7 +315,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) diff --git a/Make/VS.2015/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj b/Make/VS.2015/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj index a22a9079..4c496468 100644 --- a/Make/VS.2015/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj +++ b/Make/VS.2015/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj @@ -159,12 +159,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -176,13 +176,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -194,12 +194,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -211,13 +211,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -231,14 +231,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -252,7 +252,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -260,7 +260,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -274,14 +274,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -295,7 +295,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -303,7 +303,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2015/OpenSeaChest_Security/OpenSeaChest_Security.vcxproj b/Make/VS.2015/OpenSeaChest_Security/OpenSeaChest_Security.vcxproj index 63330a6c..7593e21c 100644 --- a/Make/VS.2015/OpenSeaChest_Security/OpenSeaChest_Security.vcxproj +++ b/Make/VS.2015/OpenSeaChest_Security/OpenSeaChest_Security.vcxproj @@ -160,12 +160,12 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -178,13 +178,13 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -197,12 +197,12 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -215,13 +215,13 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -236,14 +236,14 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -258,7 +258,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -266,7 +266,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -281,14 +281,14 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -303,7 +303,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -311,7 +311,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2015/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj b/Make/VS.2015/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj index 1d2a9e78..2c4cf34c 100644 --- a/Make/VS.2015/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj +++ b/Make/VS.2015/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj @@ -159,12 +159,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -176,13 +176,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -194,12 +194,12 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -211,13 +211,13 @@ Level3 Disabled true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -231,14 +231,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -252,7 +252,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -260,7 +260,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -274,14 +274,14 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -295,7 +295,7 @@ true true true - ..\..\..\wingetopt\src\;..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\wingetopt\src\;..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -303,7 +303,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2015\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2015\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-common\Make\VS.2015\opensea-common\$(Platform)\$(Configuration)\;..\..\..\subprojects\wingetopt\VS.2015\$(Platform)\$(Configuration);%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2017/OpenSeaChest.sln b/Make/VS.2017/OpenSeaChest.sln index bf9a78c3..0d7ad899 100644 --- a/Make/VS.2017/OpenSeaChest.sln +++ b/Make/VS.2017/OpenSeaChest.sln @@ -3,28 +3,28 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.26730.8 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Win_getopt", "..\..\wingetopt\VS.2017\Win_getopt.vcxproj", "{621B44CE-B314-4E05-B214-5DC70F2B4798}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Win_getopt", "..\..\subprojects\wingetopt\VS.2017\Win_getopt.vcxproj", "{621B44CE-B314-4E05-B214-5DC70F2B4798}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-common", "..\..\opensea-common\Make\VS.2017\opensea-common\opensea-common\opensea-common.vcxproj", "{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-common", "..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\opensea-common\opensea-common.vcxproj", "{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operationsLib", "..\..\opensea-operations\Make\VS.2017\opensea-operations\opensea-operations\opensea-operations.vcxproj", "{A0771494-8717-48AB-A0E5-49191252FF2C}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operationsLib", "..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\opensea-operations\opensea-operations.vcxproj", "{A0771494-8717-48AB-A0E5-49191252FF2C}" ProjectSection(ProjectDependencies) = postProject {7DAC7F63-E808-47FD-BEEB-33E4A870008B} = {7DAC7F63-E808-47FD-BEEB-33E4A870008B} {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operations-DLL", "..\..\opensea-operations\Make\VS.2017\opensea-operations\opensea-operations-DLL\opensea-operations-DLL.vcxproj", "{D73F51F3-3C0C-4E82-A0C2-10823534A5D8}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operations-DLL", "..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\opensea-operations-DLL\opensea-operations-DLL.vcxproj", "{D73F51F3-3C0C-4E82-A0C2-10823534A5D8}" ProjectSection(ProjectDependencies) = postProject {EC785B2D-14C3-4AAF-AF33-595BFC96343C} = {EC785B2D-14C3-4AAF-AF33-595BFC96343C} {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transportLib", "..\..\opensea-transport\Make\VS.2017\opensea-transport\opensea-transport\opensea-transport.vcxproj", "{7DAC7F63-E808-47FD-BEEB-33E4A870008B}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transportLib", "..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\opensea-transport\opensea-transport.vcxproj", "{7DAC7F63-E808-47FD-BEEB-33E4A870008B}" ProjectSection(ProjectDependencies) = postProject {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transport-DLL", "..\..\opensea-transport\Make\VS.2017\opensea-transport\opensea-transport-DLL\opensea-transport-DLL.vcxproj", "{EC785B2D-14C3-4AAF-AF33-595BFC96343C}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transport-DLL", "..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\opensea-transport-DLL\opensea-transport-DLL.vcxproj", "{EC785B2D-14C3-4AAF-AF33-595BFC96343C}" ProjectSection(ProjectDependencies) = postProject {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} EndProjectSection diff --git a/Make/VS.2017/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj b/Make/VS.2017/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj index bbdd8da1..a128ae6a 100644 --- a/Make/VS.2017/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj +++ b/Make/VS.2017/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj @@ -332,14 +332,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -351,14 +351,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -370,14 +370,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -389,7 +389,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -397,7 +397,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -409,7 +409,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -417,7 +417,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -429,7 +429,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -437,7 +437,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -449,14 +449,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -468,7 +468,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -476,7 +476,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -490,7 +490,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -499,7 +499,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -513,7 +513,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -522,7 +522,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -536,7 +536,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -545,7 +545,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -559,7 +559,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -569,7 +569,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -583,7 +583,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -593,7 +593,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -607,7 +607,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -617,7 +617,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -631,7 +631,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -640,7 +640,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -654,7 +654,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -664,7 +664,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2017/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj b/Make/VS.2017/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj index bca6c7a1..8294a577 100644 --- a/Make/VS.2017/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj +++ b/Make/VS.2017/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj @@ -334,7 +334,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -343,7 +343,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -353,7 +353,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -362,7 +362,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -372,7 +372,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -381,7 +381,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -391,7 +391,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -401,7 +401,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -411,7 +411,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -421,7 +421,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -431,7 +431,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -441,7 +441,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -451,7 +451,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -460,7 +460,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -470,7 +470,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -480,7 +480,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -492,7 +492,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -503,7 +503,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -515,7 +515,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -526,7 +526,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -538,7 +538,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -549,7 +549,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -561,7 +561,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -573,7 +573,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -585,7 +585,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -597,7 +597,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -609,7 +609,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -621,7 +621,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -633,7 +633,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -644,7 +644,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -656,7 +656,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -668,7 +668,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) diff --git a/Make/VS.2017/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj b/Make/VS.2017/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj index 4c845e66..94d33bf6 100644 --- a/Make/VS.2017/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj +++ b/Make/VS.2017/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj @@ -332,14 +332,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -351,14 +351,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -370,14 +370,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -389,7 +389,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC MultiThreadedDebug @@ -397,7 +397,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -409,7 +409,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC MultiThreadedDebug @@ -417,7 +417,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -429,7 +429,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC MultiThreadedDebug @@ -437,7 +437,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -449,14 +449,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -468,7 +468,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC MultiThreadedDebug @@ -476,7 +476,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -490,7 +490,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -499,7 +499,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -513,7 +513,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -522,7 +522,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -536,7 +536,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -545,7 +545,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -559,7 +559,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC MultiThreaded @@ -569,7 +569,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -583,7 +583,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC MultiThreaded @@ -593,7 +593,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -607,7 +607,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC MultiThreaded @@ -617,7 +617,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -631,7 +631,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -640,7 +640,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -654,7 +654,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ENABLE_CSMI;DISABLE_TCG_SUPPORT CompileAsC MultiThreaded @@ -664,7 +664,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2017/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj b/Make/VS.2017/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj index 7d0300ad..dec8247e 100644 --- a/Make/VS.2017/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj +++ b/Make/VS.2017/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj @@ -332,14 +332,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -351,14 +351,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -370,14 +370,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -389,7 +389,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -397,7 +397,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -409,7 +409,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -417,7 +417,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -429,7 +429,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -437,7 +437,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -449,14 +449,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -468,7 +468,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -476,7 +476,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -490,7 +490,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -499,7 +499,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -513,7 +513,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -522,7 +522,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -536,7 +536,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -545,7 +545,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -559,7 +559,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -569,7 +569,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -583,7 +583,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -593,7 +593,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -607,7 +607,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -617,7 +617,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -631,7 +631,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -640,7 +640,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -654,7 +654,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -664,7 +664,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2017/OpenSeaChest_Format/OpenSeaChest_Format.vcxproj b/Make/VS.2017/OpenSeaChest_Format/OpenSeaChest_Format.vcxproj index 06d8155d..9f841923 100644 --- a/Make/VS.2017/OpenSeaChest_Format/OpenSeaChest_Format.vcxproj +++ b/Make/VS.2017/OpenSeaChest_Format/OpenSeaChest_Format.vcxproj @@ -332,7 +332,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -342,7 +342,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -351,7 +351,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -361,7 +361,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -370,7 +370,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -380,7 +380,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -389,7 +389,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -400,7 +400,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -409,7 +409,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -420,7 +420,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -429,7 +429,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -440,7 +440,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -449,7 +449,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -459,7 +459,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -468,7 +468,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -479,7 +479,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -490,7 +490,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -502,7 +502,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -513,7 +513,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -525,7 +525,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -536,7 +536,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -548,7 +548,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -559,7 +559,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -572,7 +572,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -583,7 +583,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -596,7 +596,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -607,7 +607,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -620,7 +620,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -631,7 +631,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -643,7 +643,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -654,7 +654,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -667,7 +667,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) diff --git a/Make/VS.2017/OpenSeaChest_GenericTests/OpenSeaChest_GenericTests.vcxproj b/Make/VS.2017/OpenSeaChest_GenericTests/OpenSeaChest_GenericTests.vcxproj index 3ca51574..31284c43 100644 --- a/Make/VS.2017/OpenSeaChest_GenericTests/OpenSeaChest_GenericTests.vcxproj +++ b/Make/VS.2017/OpenSeaChest_GenericTests/OpenSeaChest_GenericTests.vcxproj @@ -332,14 +332,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -351,14 +351,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -370,14 +370,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -389,7 +389,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -397,7 +397,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -409,7 +409,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -417,7 +417,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -429,7 +429,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -437,7 +437,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -449,14 +449,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -468,7 +468,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -476,7 +476,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -490,7 +490,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -499,7 +499,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -513,7 +513,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -522,7 +522,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -536,7 +536,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -545,7 +545,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -559,7 +559,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -569,7 +569,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -583,7 +583,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -593,7 +593,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -607,7 +607,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -617,7 +617,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -631,7 +631,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -640,7 +640,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -654,7 +654,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -664,7 +664,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2017/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj b/Make/VS.2017/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj index a2bd37fd..86e7f78e 100644 --- a/Make/VS.2017/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj +++ b/Make/VS.2017/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj @@ -334,7 +334,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -343,7 +343,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -353,7 +353,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -362,7 +362,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -372,7 +372,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -381,7 +381,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -391,7 +391,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -401,7 +401,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -411,7 +411,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -421,7 +421,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -431,7 +431,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -441,7 +441,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -451,7 +451,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -460,7 +460,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -470,7 +470,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -480,7 +480,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -492,7 +492,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -503,7 +503,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -515,7 +515,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -526,7 +526,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -538,7 +538,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -549,7 +549,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -561,7 +561,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -573,7 +573,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -585,7 +585,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -597,7 +597,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -609,7 +609,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -621,7 +621,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -633,7 +633,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -644,7 +644,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -656,7 +656,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret @@ -668,7 +668,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) diff --git a/Make/VS.2017/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj b/Make/VS.2017/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj index d56699d2..29f4f335 100644 --- a/Make/VS.2017/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj +++ b/Make/VS.2017/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj @@ -333,14 +333,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -353,14 +353,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -373,14 +373,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -393,7 +393,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -401,7 +401,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -414,7 +414,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -422,7 +422,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -435,7 +435,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -443,7 +443,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -456,14 +456,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -476,7 +476,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -484,7 +484,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -499,7 +499,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -508,7 +508,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -523,7 +523,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -532,7 +532,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -547,7 +547,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -556,7 +556,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -571,7 +571,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -581,7 +581,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -596,7 +596,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -606,7 +606,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -621,7 +621,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -631,7 +631,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -646,7 +646,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -655,7 +655,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -670,7 +670,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -680,7 +680,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2017/OpenSeaChest_NVMe/OpenSeaChest_NVMe.vcxproj b/Make/VS.2017/OpenSeaChest_NVMe/OpenSeaChest_NVMe.vcxproj index 0a290df2..88234dae 100644 --- a/Make/VS.2017/OpenSeaChest_NVMe/OpenSeaChest_NVMe.vcxproj +++ b/Make/VS.2017/OpenSeaChest_NVMe/OpenSeaChest_NVMe.vcxproj @@ -335,7 +335,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -344,7 +344,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -359,7 +359,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -368,7 +368,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -383,7 +383,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -392,7 +392,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -407,7 +407,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -417,7 +417,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -432,7 +432,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -442,7 +442,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -457,7 +457,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -467,7 +467,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -480,14 +480,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -500,14 +500,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -520,14 +520,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -540,7 +540,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -548,7 +548,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -561,7 +561,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -569,7 +569,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -582,7 +582,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -590,7 +590,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -603,14 +603,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -623,7 +623,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -631,7 +631,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -646,7 +646,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -655,7 +655,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -670,7 +670,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -680,7 +680,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2017/OpenSeaChest_PassthroughTest/OpenSeaChest_PassthroughTest.vcxproj b/Make/VS.2017/OpenSeaChest_PassthroughTest/OpenSeaChest_PassthroughTest.vcxproj index 1021510b..159e096e 100644 --- a/Make/VS.2017/OpenSeaChest_PassthroughTest/OpenSeaChest_PassthroughTest.vcxproj +++ b/Make/VS.2017/OpenSeaChest_PassthroughTest/OpenSeaChest_PassthroughTest.vcxproj @@ -317,14 +317,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -337,7 +337,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -345,7 +345,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -358,14 +358,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -378,14 +378,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -398,14 +398,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -418,7 +418,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -426,7 +426,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -439,7 +439,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -447,7 +447,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -460,7 +460,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -468,7 +468,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -483,7 +483,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -492,7 +492,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -507,7 +507,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -516,7 +516,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -531,7 +531,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -540,7 +540,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -555,7 +555,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -565,7 +565,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -580,7 +580,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -590,7 +590,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -605,7 +605,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -615,7 +615,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -630,7 +630,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -639,7 +639,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -654,7 +654,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -664,7 +664,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2017/OpenSeaChest_PowerControl/OpenSeaChest_PowerControl.vcxproj b/Make/VS.2017/OpenSeaChest_PowerControl/OpenSeaChest_PowerControl.vcxproj index 8fc927d8..4ebea34d 100644 --- a/Make/VS.2017/OpenSeaChest_PowerControl/OpenSeaChest_PowerControl.vcxproj +++ b/Make/VS.2017/OpenSeaChest_PowerControl/OpenSeaChest_PowerControl.vcxproj @@ -332,14 +332,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -351,14 +351,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -370,14 +370,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -389,7 +389,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -397,7 +397,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -409,7 +409,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -417,7 +417,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -429,7 +429,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -437,7 +437,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -449,14 +449,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -468,7 +468,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -476,7 +476,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -490,7 +490,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -499,7 +499,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -513,7 +513,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -522,7 +522,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -536,7 +536,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -545,7 +545,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -559,7 +559,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -569,7 +569,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -583,7 +583,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -593,7 +593,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -607,7 +607,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -617,7 +617,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -631,7 +631,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -640,7 +640,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -654,7 +654,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -664,7 +664,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2017/OpenSeaChest_Reservations/OpenSeaChest_Reservations.vcxproj b/Make/VS.2017/OpenSeaChest_Reservations/OpenSeaChest_Reservations.vcxproj index d70c6460..5e4df659 100644 --- a/Make/VS.2017/OpenSeaChest_Reservations/OpenSeaChest_Reservations.vcxproj +++ b/Make/VS.2017/OpenSeaChest_Reservations/OpenSeaChest_Reservations.vcxproj @@ -311,7 +311,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -321,7 +321,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -335,7 +335,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -346,7 +346,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -358,7 +358,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -366,7 +366,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -378,7 +378,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -386,7 +386,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -398,7 +398,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -406,7 +406,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -418,7 +418,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -427,7 +427,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -439,7 +439,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -448,7 +448,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -460,7 +460,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -469,7 +469,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -481,7 +481,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -489,7 +489,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -501,7 +501,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -510,7 +510,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -524,7 +524,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -534,7 +534,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -548,7 +548,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -558,7 +558,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -572,7 +572,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -582,7 +582,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -596,7 +596,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -607,7 +607,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -621,7 +621,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -632,7 +632,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -646,7 +646,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC @@ -657,7 +657,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 diff --git a/Make/VS.2017/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj b/Make/VS.2017/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj index 8101bb4b..b18c4dff 100644 --- a/Make/VS.2017/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj +++ b/Make/VS.2017/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj @@ -332,7 +332,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -345,7 +345,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -353,7 +353,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -366,7 +366,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -374,7 +374,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -387,7 +387,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -395,7 +395,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -409,7 +409,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -417,7 +417,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -431,7 +431,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -439,7 +439,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -453,7 +453,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -461,7 +461,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -474,7 +474,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -482,7 +482,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -496,7 +496,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -506,7 +506,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -519,7 +519,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -529,7 +529,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -542,7 +542,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -552,7 +552,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -565,7 +565,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -575,7 +575,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -589,7 +589,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -599,7 +599,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -613,7 +613,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -623,7 +623,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -637,7 +637,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -647,7 +647,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -660,7 +660,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -670,7 +670,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -684,7 +684,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) diff --git a/Make/VS.2017/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj b/Make/VS.2017/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj index bbe616cf..c589118c 100644 --- a/Make/VS.2017/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj +++ b/Make/VS.2017/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj @@ -332,14 +332,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -351,14 +351,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -370,14 +370,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -389,7 +389,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -397,7 +397,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -409,7 +409,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -417,7 +417,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -429,7 +429,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -437,7 +437,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -449,14 +449,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -468,7 +468,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreadedDebug @@ -476,7 +476,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -490,7 +490,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -499,7 +499,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -513,7 +513,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -522,7 +522,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -536,7 +536,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -545,7 +545,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -559,7 +559,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -569,7 +569,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -583,7 +583,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -593,7 +593,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -607,7 +607,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -617,7 +617,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -631,7 +631,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -640,7 +640,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -654,7 +654,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI CompileAsC MultiThreaded @@ -664,7 +664,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2017/OpenSeaChest_Security/OpenSeaChest_Security.vcxproj b/Make/VS.2017/OpenSeaChest_Security/OpenSeaChest_Security.vcxproj index 70bf279a..0adcf188 100644 --- a/Make/VS.2017/OpenSeaChest_Security/OpenSeaChest_Security.vcxproj +++ b/Make/VS.2017/OpenSeaChest_Security/OpenSeaChest_Security.vcxproj @@ -317,14 +317,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -337,7 +337,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -345,7 +345,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -358,14 +358,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -378,14 +378,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -398,14 +398,14 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -418,7 +418,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -426,7 +426,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -439,7 +439,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -447,7 +447,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -460,7 +460,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -468,7 +468,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -483,7 +483,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -492,7 +492,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -507,7 +507,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -516,7 +516,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -531,7 +531,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -540,7 +540,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -555,7 +555,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -565,7 +565,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -580,7 +580,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -590,7 +590,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -605,7 +605,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -615,7 +615,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -630,7 +630,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -639,7 +639,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -654,7 +654,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -664,7 +664,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2017/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj b/Make/VS.2017/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj index b94a207f..04815ac9 100644 --- a/Make/VS.2017/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj +++ b/Make/VS.2017/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj @@ -332,14 +332,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -351,14 +351,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -370,14 +370,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -389,7 +389,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -397,7 +397,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -409,7 +409,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -417,7 +417,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -429,7 +429,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -437,7 +437,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -449,14 +449,14 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -468,7 +468,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -476,7 +476,7 @@ Caret - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -490,7 +490,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -499,7 +499,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -513,7 +513,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -522,7 +522,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -536,7 +536,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -545,7 +545,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -559,7 +559,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -569,7 +569,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -583,7 +583,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -593,7 +593,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -607,7 +607,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -617,7 +617,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -631,7 +631,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204 @@ -640,7 +640,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -654,7 +654,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -664,7 +664,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2017\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2017\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2017\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2017\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2019/OpenSeaChest.sln b/Make/VS.2019/OpenSeaChest.sln index 04db9341..729cf4a5 100644 --- a/Make/VS.2019/OpenSeaChest.sln +++ b/Make/VS.2019/OpenSeaChest.sln @@ -3,28 +3,28 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.32407.337 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Win_getopt", "..\..\wingetopt\VS.2019\Win_getopt.vcxproj", "{621B44CE-B314-4E05-B214-5DC70F2B4798}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Win_getopt", "..\..\subprojects\wingetopt\VS.2019\Win_getopt.vcxproj", "{621B44CE-B314-4E05-B214-5DC70F2B4798}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-common", "..\..\opensea-common\Make\VS.2019\opensea-common\opensea-common\opensea-common.vcxproj", "{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-common", "..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\opensea-common\opensea-common.vcxproj", "{FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operationsLib", "..\..\opensea-operations\Make\VS.2019\opensea-operations\opensea-operations\opensea-operations.vcxproj", "{A0771494-8717-48AB-A0E5-49191252FF2C}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operationsLib", "..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\opensea-operations\opensea-operations.vcxproj", "{A0771494-8717-48AB-A0E5-49191252FF2C}" ProjectSection(ProjectDependencies) = postProject {7DAC7F63-E808-47FD-BEEB-33E4A870008B} = {7DAC7F63-E808-47FD-BEEB-33E4A870008B} {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operations-DLL", "..\..\opensea-operations\Make\VS.2019\opensea-operations\opensea-operations-DLL\opensea-operations-DLL.vcxproj", "{D73F51F3-3C0C-4E82-A0C2-10823534A5D8}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-operations-DLL", "..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\opensea-operations-DLL\opensea-operations-DLL.vcxproj", "{D73F51F3-3C0C-4E82-A0C2-10823534A5D8}" ProjectSection(ProjectDependencies) = postProject {EC785B2D-14C3-4AAF-AF33-595BFC96343C} = {EC785B2D-14C3-4AAF-AF33-595BFC96343C} {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transportLib", "..\..\opensea-transport\Make\VS.2019\opensea-transport\opensea-transport\opensea-transport.vcxproj", "{7DAC7F63-E808-47FD-BEEB-33E4A870008B}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transportLib", "..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\opensea-transport\opensea-transport.vcxproj", "{7DAC7F63-E808-47FD-BEEB-33E4A870008B}" ProjectSection(ProjectDependencies) = postProject {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transport-DLL", "..\..\opensea-transport\Make\VS.2019\opensea-transport\opensea-transport-DLL\opensea-transport-DLL.vcxproj", "{EC785B2D-14C3-4AAF-AF33-595BFC96343C}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "opensea-transport-DLL", "..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\opensea-transport-DLL\opensea-transport-DLL.vcxproj", "{EC785B2D-14C3-4AAF-AF33-595BFC96343C}" ProjectSection(ProjectDependencies) = postProject {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} = {FBCBA2F1-3BF8-4A25-B815-E228E1AEDCFF} EndProjectSection diff --git a/Make/VS.2019/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj b/Make/VS.2019/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj index 074facc2..da6bbe65 100644 --- a/Make/VS.2019/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj +++ b/Make/VS.2019/OpenSeaChest_Basics/OpenSeaChest_Basics.vcxproj @@ -332,7 +332,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -340,7 +340,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -352,7 +352,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -360,7 +360,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -372,7 +372,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -380,7 +380,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -392,7 +392,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -401,7 +401,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -413,7 +413,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -422,7 +422,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -434,7 +434,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -443,7 +443,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -455,7 +455,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -463,7 +463,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -475,7 +475,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -484,7 +484,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -498,7 +498,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -508,7 +508,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -522,7 +522,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -532,7 +532,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -546,7 +546,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -556,7 +556,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -570,7 +570,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -581,7 +581,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -595,7 +595,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -606,7 +606,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -620,7 +620,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -631,7 +631,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -645,7 +645,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -655,7 +655,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -669,7 +669,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -680,7 +680,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2019/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj b/Make/VS.2019/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj index 44a91947..8ca3ab7d 100644 --- a/Make/VS.2019/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj +++ b/Make/VS.2019/OpenSeaChest_Configure/OpenSeaChest_Configure.vcxproj @@ -334,7 +334,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -344,7 +344,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -354,7 +354,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -364,7 +364,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -374,7 +374,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -384,7 +384,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -394,7 +394,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -405,7 +405,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -415,7 +415,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -426,7 +426,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -436,7 +436,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -447,7 +447,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -457,7 +457,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -467,7 +467,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -477,7 +477,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -488,7 +488,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -500,7 +500,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -512,7 +512,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -524,7 +524,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -536,7 +536,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -548,7 +548,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -560,7 +560,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -572,7 +572,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -585,7 +585,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -597,7 +597,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -610,7 +610,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -622,7 +622,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -635,7 +635,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -647,7 +647,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -659,7 +659,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -671,7 +671,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -684,7 +684,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) diff --git a/Make/VS.2019/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj b/Make/VS.2019/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj index f582368c..1dd616e2 100644 --- a/Make/VS.2019/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj +++ b/Make/VS.2019/OpenSeaChest_Erase/OpenSeaChest_Erase.vcxproj @@ -332,7 +332,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -340,7 +340,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -352,7 +352,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -360,7 +360,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -372,7 +372,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -380,7 +380,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -392,7 +392,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -401,7 +401,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -413,7 +413,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -422,7 +422,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -434,7 +434,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -443,7 +443,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -455,7 +455,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -463,7 +463,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -475,7 +475,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -484,7 +484,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -498,7 +498,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -508,7 +508,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -522,7 +522,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -532,7 +532,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -546,7 +546,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -556,7 +556,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -570,7 +570,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -581,7 +581,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -595,7 +595,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -606,7 +606,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -620,7 +620,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -631,7 +631,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -645,7 +645,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -655,7 +655,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -669,7 +669,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -680,7 +680,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2019/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj b/Make/VS.2019/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj index 9a3deb21..7f7c0564 100644 --- a/Make/VS.2019/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj +++ b/Make/VS.2019/OpenSeaChest_Firmware/OpenSeaChest_Firmware.vcxproj @@ -332,7 +332,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -340,7 +340,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -352,7 +352,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -360,7 +360,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -372,7 +372,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -380,7 +380,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -392,7 +392,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -401,7 +401,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -413,7 +413,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -422,7 +422,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -434,7 +434,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -443,7 +443,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -455,7 +455,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -463,7 +463,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -475,7 +475,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -484,7 +484,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -498,7 +498,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -508,7 +508,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -522,7 +522,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -532,7 +532,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -546,7 +546,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -556,7 +556,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -570,7 +570,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -581,7 +581,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -595,7 +595,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -606,7 +606,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -620,7 +620,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -631,7 +631,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -645,7 +645,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -655,7 +655,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -669,7 +669,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -680,7 +680,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2019/OpenSeaChest_Format/OpenSeaChest_Format.vcxproj b/Make/VS.2019/OpenSeaChest_Format/OpenSeaChest_Format.vcxproj index f179d8fb..251bdf5f 100644 --- a/Make/VS.2019/OpenSeaChest_Format/OpenSeaChest_Format.vcxproj +++ b/Make/VS.2019/OpenSeaChest_Format/OpenSeaChest_Format.vcxproj @@ -332,7 +332,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -343,7 +343,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -352,7 +352,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -363,7 +363,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -372,7 +372,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -383,7 +383,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -392,7 +392,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -404,7 +404,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -413,7 +413,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -425,7 +425,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -434,7 +434,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -446,7 +446,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -455,7 +455,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -466,7 +466,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -475,7 +475,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -487,7 +487,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -498,7 +498,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -511,7 +511,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -522,7 +522,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -535,7 +535,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -546,7 +546,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -559,7 +559,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -570,7 +570,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -584,7 +584,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -595,7 +595,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -609,7 +609,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -620,7 +620,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -634,7 +634,7 @@ RequireAdministrator Console 6.02 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -645,7 +645,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -658,7 +658,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) @@ -669,7 +669,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -683,7 +683,7 @@ RequireAdministrator Console 6.0 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) diff --git a/Make/VS.2019/OpenSeaChest_GenericTests/OpenSeaChest_GenericTests.vcxproj b/Make/VS.2019/OpenSeaChest_GenericTests/OpenSeaChest_GenericTests.vcxproj index 5299d0ed..b31d1c89 100644 --- a/Make/VS.2019/OpenSeaChest_GenericTests/OpenSeaChest_GenericTests.vcxproj +++ b/Make/VS.2019/OpenSeaChest_GenericTests/OpenSeaChest_GenericTests.vcxproj @@ -332,7 +332,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -340,7 +340,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -352,7 +352,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -360,7 +360,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -372,7 +372,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -380,7 +380,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -392,7 +392,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -401,7 +401,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -413,7 +413,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -422,7 +422,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -434,7 +434,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -443,7 +443,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -455,7 +455,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -463,7 +463,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -475,7 +475,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -484,7 +484,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -498,7 +498,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -508,7 +508,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -522,7 +522,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -532,7 +532,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -546,7 +546,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -556,7 +556,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -570,7 +570,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -581,7 +581,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -595,7 +595,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -606,7 +606,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -620,7 +620,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -631,7 +631,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -645,7 +645,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -655,7 +655,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -669,7 +669,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -680,7 +680,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2019/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj b/Make/VS.2019/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj index 60a0143f..b2b15423 100644 --- a/Make/VS.2019/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj +++ b/Make/VS.2019/OpenSeaChest_Info/OpenSeaChest_Info.vcxproj @@ -334,7 +334,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -344,7 +344,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -354,7 +354,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -364,7 +364,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -374,7 +374,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -384,7 +384,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -394,7 +394,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -405,7 +405,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -415,7 +415,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -426,7 +426,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -436,7 +436,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -447,7 +447,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -457,7 +457,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -467,7 +467,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -477,7 +477,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreadedDebug 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -488,7 +488,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -500,7 +500,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -512,7 +512,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -524,7 +524,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -536,7 +536,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -548,7 +548,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -560,7 +560,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -572,7 +572,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -585,7 +585,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -597,7 +597,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -610,7 +610,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -622,7 +622,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -635,7 +635,7 @@ Console 6.02 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -647,7 +647,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret stdc17 @@ -659,7 +659,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -671,7 +671,7 @@ true CompileAsC STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) MultiThreaded 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 Caret @@ -684,7 +684,7 @@ Console 6.0 opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) diff --git a/Make/VS.2019/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj b/Make/VS.2019/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj index 7508d61c..3b43a420 100644 --- a/Make/VS.2019/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj +++ b/Make/VS.2019/OpenSeaChest_Logs/OpenSeaChest_Logs.vcxproj @@ -333,7 +333,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -341,7 +341,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -354,7 +354,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -362,7 +362,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -375,7 +375,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -383,7 +383,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -396,7 +396,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -405,7 +405,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -418,7 +418,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -427,7 +427,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -440,7 +440,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -449,7 +449,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -462,7 +462,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -470,7 +470,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -483,7 +483,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -492,7 +492,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -507,7 +507,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -517,7 +517,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -532,7 +532,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -542,7 +542,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -557,7 +557,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -567,7 +567,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -582,7 +582,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -593,7 +593,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -608,7 +608,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -619,7 +619,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -634,7 +634,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -645,7 +645,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -660,7 +660,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -670,7 +670,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -685,7 +685,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -696,7 +696,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2019/OpenSeaChest_NVMe/OpenSeaChest_NVMe.vcxproj b/Make/VS.2019/OpenSeaChest_NVMe/OpenSeaChest_NVMe.vcxproj index 74f75720..f96e4149 100644 --- a/Make/VS.2019/OpenSeaChest_NVMe/OpenSeaChest_NVMe.vcxproj +++ b/Make/VS.2019/OpenSeaChest_NVMe/OpenSeaChest_NVMe.vcxproj @@ -335,7 +335,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -345,7 +345,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -360,7 +360,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -370,7 +370,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -385,7 +385,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -395,7 +395,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -410,7 +410,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -421,7 +421,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -436,7 +436,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -447,7 +447,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -462,7 +462,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -473,7 +473,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -486,7 +486,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -494,7 +494,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -507,7 +507,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -515,7 +515,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -528,7 +528,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -536,7 +536,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -549,7 +549,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -558,7 +558,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -571,7 +571,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -580,7 +580,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -593,7 +593,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -602,7 +602,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -615,7 +615,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -623,7 +623,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -636,7 +636,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -645,7 +645,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -660,7 +660,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -670,7 +670,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -685,7 +685,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -696,7 +696,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2019/OpenSeaChest_PassthroughTest/OpenSeaChest_PassthroughTest.vcxproj b/Make/VS.2019/OpenSeaChest_PassthroughTest/OpenSeaChest_PassthroughTest.vcxproj index 13de8314..a1fd715e 100644 --- a/Make/VS.2019/OpenSeaChest_PassthroughTest/OpenSeaChest_PassthroughTest.vcxproj +++ b/Make/VS.2019/OpenSeaChest_PassthroughTest/OpenSeaChest_PassthroughTest.vcxproj @@ -317,7 +317,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -325,7 +325,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -338,7 +338,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -347,7 +347,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -360,7 +360,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -368,7 +368,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -381,7 +381,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -389,7 +389,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -402,7 +402,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -410,7 +410,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -423,7 +423,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -432,7 +432,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -445,7 +445,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -454,7 +454,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -467,7 +467,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -476,7 +476,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -491,7 +491,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -501,7 +501,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -516,7 +516,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -526,7 +526,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -541,7 +541,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -551,7 +551,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -566,7 +566,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -577,7 +577,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -592,7 +592,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -603,7 +603,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -618,7 +618,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -629,7 +629,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -644,7 +644,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -654,7 +654,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -669,7 +669,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -680,7 +680,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2019/OpenSeaChest_PowerControl/OpenSeaChest_PowerControl.vcxproj b/Make/VS.2019/OpenSeaChest_PowerControl/OpenSeaChest_PowerControl.vcxproj index ff12af43..2684f1e2 100644 --- a/Make/VS.2019/OpenSeaChest_PowerControl/OpenSeaChest_PowerControl.vcxproj +++ b/Make/VS.2019/OpenSeaChest_PowerControl/OpenSeaChest_PowerControl.vcxproj @@ -332,7 +332,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -340,7 +340,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -352,7 +352,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -360,7 +360,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -372,7 +372,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -380,7 +380,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -392,7 +392,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -401,7 +401,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -413,7 +413,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -422,7 +422,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -434,7 +434,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -443,7 +443,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -455,7 +455,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -463,7 +463,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -475,7 +475,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -484,7 +484,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -498,7 +498,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -508,7 +508,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -522,7 +522,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -532,7 +532,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -546,7 +546,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -556,7 +556,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -570,7 +570,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -581,7 +581,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -595,7 +595,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -606,7 +606,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -620,7 +620,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -631,7 +631,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -645,7 +645,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -655,7 +655,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -669,7 +669,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -680,7 +680,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2019/OpenSeaChest_Reservations/OpenSeaChest_Reservations.vcxproj b/Make/VS.2019/OpenSeaChest_Reservations/OpenSeaChest_Reservations.vcxproj index 4e77ceed..383ed7cb 100644 --- a/Make/VS.2019/OpenSeaChest_Reservations/OpenSeaChest_Reservations.vcxproj +++ b/Make/VS.2019/OpenSeaChest_Reservations/OpenSeaChest_Reservations.vcxproj @@ -311,7 +311,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -322,7 +322,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -336,7 +336,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -348,7 +348,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -360,7 +360,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -369,7 +369,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -381,7 +381,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -390,7 +390,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -402,7 +402,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -411,7 +411,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -423,7 +423,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -433,7 +433,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -445,7 +445,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -455,7 +455,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -467,7 +467,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -477,7 +477,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -489,7 +489,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -498,7 +498,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -510,7 +510,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -520,7 +520,7 @@ Console - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -534,7 +534,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -545,7 +545,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -559,7 +559,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -570,7 +570,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -584,7 +584,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -595,7 +595,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -609,7 +609,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -621,7 +621,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -635,7 +635,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -647,7 +647,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 @@ -661,7 +661,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) Caret STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC @@ -673,7 +673,7 @@ Console true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator 6.0 diff --git a/Make/VS.2019/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj b/Make/VS.2019/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj index c8ab0916..d950d49b 100644 --- a/Make/VS.2019/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj +++ b/Make/VS.2019/OpenSeaChest_SMART/OpenSeaChest_SMART.vcxproj @@ -332,7 +332,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -346,7 +346,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -354,7 +354,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -368,7 +368,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -376,7 +376,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -390,7 +390,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -398,7 +398,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -413,7 +413,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -421,7 +421,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -436,7 +436,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -444,7 +444,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -459,7 +459,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -467,7 +467,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -481,7 +481,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -489,7 +489,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -504,7 +504,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -514,7 +514,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -528,7 +528,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -538,7 +538,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -552,7 +552,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -562,7 +562,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -576,7 +576,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -586,7 +586,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -601,7 +601,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -611,7 +611,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -626,7 +626,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -636,7 +636,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -651,7 +651,7 @@ 6.02 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -661,7 +661,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -675,7 +675,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) @@ -685,7 +685,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -700,7 +700,7 @@ 6.0 RequireAdministrator opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) diff --git a/Make/VS.2019/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj b/Make/VS.2019/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj index 08be1ead..a846ce9d 100644 --- a/Make/VS.2019/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj +++ b/Make/VS.2019/OpenSeaChest_Sample/OpenSeaChest_Sample.vcxproj @@ -332,7 +332,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -340,7 +340,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -352,7 +352,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -360,7 +360,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -372,7 +372,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -380,7 +380,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -392,7 +392,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -401,7 +401,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -413,7 +413,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -422,7 +422,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -434,7 +434,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -443,7 +443,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -455,7 +455,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -463,7 +463,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -475,7 +475,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -484,7 +484,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -498,7 +498,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -508,7 +508,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -522,7 +522,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -532,7 +532,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -546,7 +546,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -556,7 +556,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -570,7 +570,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -581,7 +581,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -595,7 +595,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -606,7 +606,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -620,7 +620,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -631,7 +631,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -645,7 +645,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -655,7 +655,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -669,7 +669,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -680,7 +680,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2019/OpenSeaChest_Security/OpenSeaChest_Security.vcxproj b/Make/VS.2019/OpenSeaChest_Security/OpenSeaChest_Security.vcxproj index fb03fa65..1f1a5fc5 100644 --- a/Make/VS.2019/OpenSeaChest_Security/OpenSeaChest_Security.vcxproj +++ b/Make/VS.2019/OpenSeaChest_Security/OpenSeaChest_Security.vcxproj @@ -317,7 +317,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -325,7 +325,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -338,7 +338,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -347,7 +347,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -360,7 +360,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -368,7 +368,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -381,7 +381,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -389,7 +389,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -402,7 +402,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -410,7 +410,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -423,7 +423,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -432,7 +432,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -445,7 +445,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -454,7 +454,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -467,7 +467,7 @@ Disabled true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -476,7 +476,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -491,7 +491,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -501,7 +501,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -516,7 +516,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -526,7 +526,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -541,7 +541,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -551,7 +551,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -566,7 +566,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -577,7 +577,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -592,7 +592,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -603,7 +603,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -618,7 +618,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -629,7 +629,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -644,7 +644,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -654,7 +654,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -669,7 +669,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;DISABLE_TCG_SUPPORT;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -680,7 +680,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/VS.2019/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj b/Make/VS.2019/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj index 3076312f..78ddb756 100644 --- a/Make/VS.2019/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj +++ b/Make/VS.2019/OpenSeaChest_ZBD/OpenSeaChest_ZBD.vcxproj @@ -332,7 +332,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -340,7 +340,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -352,7 +352,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -360,7 +360,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -372,7 +372,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -380,7 +380,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -392,7 +392,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -401,7 +401,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -413,7 +413,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -422,7 +422,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -434,7 +434,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -443,7 +443,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -455,7 +455,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -463,7 +463,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -475,7 +475,7 @@ EnableAllWarnings Disabled true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreadedDebug @@ -484,7 +484,7 @@ stdc17 - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -498,7 +498,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -508,7 +508,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -522,7 +522,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -532,7 +532,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -546,7 +546,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -556,7 +556,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -570,7 +570,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -581,7 +581,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -595,7 +595,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -606,7 +606,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -620,7 +620,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -631,7 +631,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -645,7 +645,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC 4214;4201;4668;4820;4710;4255;5045;4711;4324;4221;4204;4061;5105 @@ -655,7 +655,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console @@ -669,7 +669,7 @@ true true true - ..\..\..\opensea-transport\include;..\..\..\opensea-operations\include;..\..\..\include;..\..\..\opensea-common\include;..\..\..\wingetopt\src;..\..\..\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) + ..\..\..\subprojects\opensea-transport\include;..\..\..\subprojects\opensea-operations\include;..\..\..\include;..\..\..\subprojects\opensea-common\include;..\..\..\subprojects\wingetopt\src;..\..\..\subprojects\opensea-transport\include\vendor;%(AdditionalIncludeDirectories) STATIC_OPENSEA_TRANSPORT;STATIC_OPENSEA_OPERATIONS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;ENABLE_CSMI;%(PreprocessorDefinitions) CompileAsC MultiThreaded @@ -680,7 +680,7 @@ true true - ..\..\..\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) + ..\..\..\subprojects\opensea-transport\Make\VS.2019\opensea-transport\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\opensea-operations\Make\VS.2019\opensea-operations\$(Platform)\$(Configuration)\LIB;..\..\..\subprojects\wingetopt\VS.2019\$(Platform)\$(Configuration);..\..\..\subprojects\opensea-common\Make\VS.2019\opensea-common\$(Platform)\$(Configuration)\;%(AdditionalLibraryDirectories) opensea-common.lib;opensea-transport.lib;opensea-operations.lib;getopt.lib;%(AdditionalDependencies) RequireAdministrator Console diff --git a/Make/gcc/Makefile b/Make/gcc/Makefile index 59af8307..9b882f22 100644 --- a/Make/gcc/Makefile +++ b/Make/gcc/Makefile @@ -21,22 +21,22 @@ CFLAGS ?= -Wall -Wextra -c -std=gnu99 -ffunction-sections -fdata-sections CFLAGS_I686 ?= -Wall -Wextra -c -m32 LFLAGS ?= \ -Wall -Wl,--gc-sections \ - ../../opensea-operations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ - ../../opensea-transport/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ - ../../opensea-common/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a + ../../subprojects/opensea-operations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ + ../../subprojects/opensea-transport/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ + ../../subprojects/opensea-common/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a TCGLFLAGS ?= \ -Wall -Wl,--gc-sections \ - ../../SeaCTCGOperations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libSeaCTCGOperations.a \ - ../../SeaCTCG/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libSeaCTCG.a \ - ../../opensea-operations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ - ../../opensea-transport/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ - ../../opensea-common/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a + ../../subprojects/SeaCTCGOperations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libSeaCTCGOperations.a \ + ../../subprojects/SeaCTCG/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libSeaCTCG.a \ + ../../subprojects/opensea-operations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ + ../../subprojects/opensea-transport/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ + ../../subprojects/opensea-common/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a INC_DIR ?= \ - -I../../opensea-common/include \ - -I../../opensea-transport/include \ - -I../../opensea-transport/include/vendor \ + -I../../subprojects/opensea-common/include \ + -I../../subprojects/opensea-transport/include \ + -I../../subprojects/opensea-transport/include/vendor \ -I../../include \ - -I../../opensea-operations/include + -I../../subprojects/opensea-operations/include UNAME := $(shell uname -s) @@ -220,9 +220,9 @@ export CXXFLAGS export PROJECT_DEFINES opensea-libs: - $(MAKE) $(MAKEFLAG) -C ../../opensea-common/Make/gcc - $(MAKE) $(MAKEFLAG) -C ../../opensea-transport/Make/gcc - $(MAKE) $(MAKEFLAG) -C ../../opensea-operations/Make/gcc + $(MAKE) $(MAKEFLAG) -C ../../subprojects/opensea-common/Make/gcc + $(MAKE) $(MAKEFLAG) -C ../../subprojects/opensea-transport/Make/gcc + $(MAKE) $(MAKEFLAG) -C ../../subprojects/opensea-operations/Make/gcc $(SMARTOUTFILE): $(SMARTOBJS) $(CC) $(SMARTOBJS) $(LFLAGS) -o $(FILE_OUTPUT_DIR)/$(SMARTOUTFILE) @@ -310,9 +310,9 @@ clean: clean_all: clean rm -f *.o *.a - $(MAKE) -C ../../opensea-common/Make/gcc clean - $(MAKE) -C ../../opensea-transport/Make/gcc clean - $(MAKE) -C ../../opensea-operations/Make/gcc clean + $(MAKE) -C ../../subprojects/opensea-common/Make/gcc clean + $(MAKE) -C ../../subprojects/opensea-transport/Make/gcc clean + $(MAKE) -C ../../subprojects/opensea-operations/Make/gcc clean mkoutputdir: mkdir -p $(FILE_OUTPUT_DIR) diff --git a/Make/gcc/Makefile.openSeaChest_firmware b/Make/gcc/Makefile.openSeaChest_firmware deleted file mode 100644 index 486ab1b2..00000000 --- a/Make/gcc/Makefile.openSeaChest_firmware +++ /dev/null @@ -1,135 +0,0 @@ -# -# Do NOT modify or remove this copyright and license -# -# Copyright (c) 2012 - 2017 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -# -# This software is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. -# -# ****************************************************************************************** - -# Hand Written Makefile (Edit with caution) -Muhammad -# - -UTIL_SRC_DIR=../../utils/C/openSeaChest -CC ?= gcc -LIB_FILE_OUTPUT_DIR=lib -STRIP ?= strip -STRIPOPTS ?= -CFLAGS = -Wall -Wextra -c -std=gnu99 -ffunction-sections -fdata-sections -CFLAGS_I686 = -Wall -Wextra -c -m32 - -FWDLLFLAGS = \ - -Wall -Wl,--gc-sections \ - ../../opensea-operations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ - ../../opensea-transport/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ - ../../opensea-common/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a - -INC_DIR= \ - -I../../opensea-common/include \ - -I../../opensea-transport/include \ - -I../../opensea-transport/include/vendor \ - -I../../include \ - -I../../opensea-operations/include - -UNAME := $(shell uname) -ifeq ($(UNAME),Linux) - FWDLLFLAGS += -lm -lrt - STRIPOPTS = -s -endif -ifeq ($(UNAME),SunOS) - FWDLLFLAGS += -lm - export AR=gar - STRIPOPTS= - PROJECT_DEFINES += -endif -ifeq ($(UNAME),FreeBSD) - FWDLLFLAGS += -lm -lcam - STRIPOPTS = -s -endif - -MACHINE := $(shell uname -m) - -FILE_OUTPUT_DIR=openseachest_exes - -ifeq ($(MACHINE), x86_64) - -endif - -#Files for the final binary -FIRMWAREOUTFILE = openSeaChest_Firmware -FIRMWARESOURCES = \ - $(UTIL_SRC_DIR)/openSeaChest_Firmware.c \ - ../../src/EULA.c \ - ../../src/openseachest_util_options.c - - -FIRMWAREOBJS = $(FIRMWARESOURCES:.c=.o) - -USING_MUSL=0 -#add any defines needed for tool release. -#PROJECT_DEFINES += -DDISABLE_NVME_PASSTHROUGH -#Linux: If using a different libc, you will likely get a compile warning. -# You can add a -DUSING_LIBNAME_LIBC here to specify it. -# Currently, -DUSING_MUSL_LIBC is supported to show the MIT license for it. -PROJECT_DEFINES += -DDISABLE_TCG_SUPPORT -DUSING_MUSL_LIBC=$(USING_MUSL) - -.PHONY: all - -debug: CXXFLAGS += -g -debug: CFLAGS += -g -debug: PROJECT_DEFINES += -D_DEBUG -debug: FIRMWAREOUTFILE := $(FIRMWAREOUTFILE)_dbg -debug: mkoutputdir $(FIRMWAREOUTFILE) - -static-debug: CXXFLAGS += -g -static-debug: CFLAGS += -g -static-debug: FWDLLFLAGS += -static -static-debug: PROJECT_DEFINES += -D_DEBUG -static-debug: FIRMWAREOUTFILE := $(FIRMWAREOUTFILE)_static_dbg -static-debug: mkoutputdir $(FIRMWAREOUTFILE) - -release: CXXFLAGS += -O3 -release: CFLAGS += -O3 -release: mkoutputdir $(FIRMWAREOUTFILE) - -static-release: CXXFLAGS += -O3 -static-release: CFLAGS += -O3 -static-release: FWDLLFLAGS += -static -static-release: FIRMWAREOUTFILE := $(FIRMWAREOUTFILE)_static -static-release: mkoutputdir $(FIRMWAREOUTFILE) - -export CFLAGS -export CXXFLAGS -export PROJECT_DEFINES - -all: clean debug - -opensea-libs: - $(MAKE) -C ../../opensea-common/Make/gcc - $(MAKE) -C ../../opensea-transport/Make/gcc - $(MAKE) -C ../../opensea-operations/Make/gcc - -$(FIRMWAREOUTFILE): $(FIRMWAREOBJS) opensea-libs mkoutputdir - $(CC) $(FIRMWAREOBJS) $(FWDLLFLAGS) -o $(FILE_OUTPUT_DIR)/$(FIRMWAREOUTFILE) - $(STRIP) $(STRIPOPTS) $(FILE_OUTPUT_DIR)/$(FIRMWAREOUTFILE) - -%.o: %.c - $(CC) $(CFLAGS) $(INC_DIR) $(PROJECT_DEFINES) $< -o $@ - -clean: - rm -f *.o *.a $(FILE_OUTPUT_DIR)/$(FIRMWAREOUTFILE)* - rm -f ../../src/*.o - rm -f $(UTIL_SRC_DIR)/*.o - rm -rf $(FILE_OUTPUT_DIR) - -clean_all: clean - rm -f *.o *.a - $(MAKE) -C ../../opensea-common/Make/gcc clean - $(MAKE) -C ../../opensea-transport/Make/gcc clean - $(MAKE) -C ../../opensea-operations/Make/gcc clean - -mkoutputdir: - mkdir -p $(FILE_OUTPUT_DIR) - diff --git a/Make/gccWin/Makefile.gccWin b/Make/gccWin/Makefile.gccWin index a8e02f88..f3356193 100644 --- a/Make/gccWin/Makefile.gccWin +++ b/Make/gccWin/Makefile.gccWin @@ -50,15 +50,15 @@ CFLAGS_I686 = -Wall -Wextra -c -m32 LDFLAGS = -Wall LDLIBS = \ - ../../opensea-operations/Make/gccWin/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ - ../../opensea-transport/Make/gccWin/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ - ../../opensea-common/Make/gccWin/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a + ../../subprojects/opensea-operations/Make/gccWin/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ + ../../subprojects/opensea-transport/Make/gccWin/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ + ../../subprojects/opensea-common/Make/gccWin/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a INC_DIR= \ - -I../../opensea-common/include \ - -I../../opensea-transport/include \ - -I../../opensea-transport/include/vendor \ - -I../../opensea-operations/include \ + -I../../subprojects/opensea-common/include \ + -I../../subprojects/opensea-transport/include \ + -I../../subprojects/opensea-transport/include/vendor \ + -I../../subprojects/opensea-operations/include \ -I../../include ifneq (,$(findstring MINGW64,$(UNAME))) @@ -306,9 +306,9 @@ export CXXFLAGS export PROJECT_DEFINES opensea-libs: - $(MAKE) -C ../../opensea-common/Make/gccWin -f Makefile.gccWin - $(MAKE) -C ../../opensea-transport/Make/gccWin -f Makefile.gccWin - $(MAKE) -C ../../opensea-operations/Make/gccWin -f Makefile.gccWin + $(MAKE) -C ../../subprojects/opensea-common/Make/gccWin -f Makefile.gccWin + $(MAKE) -C ../../subprojects/opensea-transport/Make/gccWin -f Makefile.gccWin + $(MAKE) -C ../../subprojects/opensea-operations/Make/gccWin -f Makefile.gccWin #basics ifneq (,$(findstring basics,$(BUILD_ALL))) @@ -447,9 +447,9 @@ clean: clean_all: clean rm -f *.o *.a - $(MAKE) -C ../../opensea-common/Make/gccWin -f Makefile.gccWin clean - $(MAKE) -C ../../opensea-transport/Make/gccWin -f Makefile.gccWin clean - $(MAKE) -C ../../opensea-operations/Make/gccWin -f Makefile.gccWin clean + $(MAKE) -C ../../subprojects/opensea-common/Make/gccWin -f Makefile.gccWin clean + $(MAKE) -C ../../subprojects/opensea-transport/Make/gccWin -f Makefile.gccWin clean + $(MAKE) -C ../../subprojects/opensea-operations/Make/gccWin -f Makefile.gccWin clean mkoutputdir: mkdir -p $(FILE_OUTPUT_DIR) diff --git a/Make/vmware/Makefile b/Make/vmware/Makefile index 2c6f3169..7d5164f8 100644 --- a/Make/vmware/Makefile +++ b/Make/vmware/Makefile @@ -388,27 +388,27 @@ CFLAGS += -DVMK_CROSS_COMP #CFLAGS_I686 = -Wall -c -m32 LFLAGS = \ -Wall \ - ../../opensea-operations/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ - ../../opensea-transport/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ - ../../opensea-common/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a \ + ../../subprojects/opensea-operations/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ + ../../subprojects/opensea-transport/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ + ../../subprojects/opensea-common/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a \ $(VMW_$(VMW_TARGET)_COMPILEFLAGS) \ $(DEV_$(DEV_OBJDIR)_OBJECTS) $(VMW_LINK_FLAGS) \ -lm -lrt TCGLFLAGS = \ -Wall \ - ../../opensea-operations/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ - ../../SeaCTCGOperations/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libSeaCTCGOperations.a \ - ../../SeaCTCG/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libSeaCTCG.a \ - ../../opensea-transport/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ - ../../opensea-common/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a \ + ../../subprojects/opensea-operations/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ + ../../subprojects/SeaCTCGOperations/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libSeaCTCGOperations.a \ + ../../subprojects/SeaCTCG/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libSeaCTCG.a \ + ../../subprojects/opensea-transport/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ + ../../subprojects/opensea-common/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a \ $(VMW_$(VMW_TARGET)_COMPILEFLAGS) \ $(DEV_$(DEV_OBJDIR)_OBJECTS) $(VMW_LINK_FLAGS) \ -lm -lrt INC_DIR= \ - -I../../opensea-common/include \ - -I../../opensea-transport/include \ + -I../../subprojects/opensea-common/include \ + -I../../subprojects/opensea-transport/include \ -I../../include \ - -I../../opensea-operations/include + -I../../subprojects/opensea-operations/include MACHINE := $(shell uname -m) @@ -569,9 +569,9 @@ clean: clean_all: clean rm -f *.o *.a - $(MAKE) -C ../../opensea-common/Make/vmware clean - $(MAKE) -C ../../opensea-transport/Make/vmware clean - $(MAKE) -C ../../opensea-operations/Make/vmware clean + $(MAKE) -C ../../subprojects/opensea-common/Make/vmware clean + $(MAKE) -C ../../subprojects/opensea-transport/Make/vmware clean + $(MAKE) -C ../../subprojects/opensea-operations/Make/vmware clean $(MAKE) -f Makefile.openSeaChest_firmware clean_all mkoutputdir: diff --git a/Make/vmware/Makefile.openSeaChest_firmware b/Make/vmware/Makefile.openSeaChest_firmware index 322f27f1..33ea9631 100644 --- a/Make/vmware/Makefile.openSeaChest_firmware +++ b/Make/vmware/Makefile.openSeaChest_firmware @@ -389,18 +389,18 @@ CFLAGS += -DVMK_CROSS_COMP FWDLLFLAGS = \ -Wall \ - ../../opensea-operations/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ - ../../opensea-transport/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ - ../../opensea-common/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a \ + ../../subprojects/opensea-operations/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ + ../../subprojects/opensea-transport/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ + ../../subprojects/opensea-common/Make/vmware/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a \ $(VMW_$(VMW_TARGET)_COMPILEFLAGS) \ $(DEV_$(DEV_OBJDIR)_OBJECTS) $(VMW_LINK_FLAGS) \ -lm -lrt INC_DIR= \ - -I../../opensea-common/include \ - -I../../opensea-transport/include \ + -I../../subprojects/opensea-common/include \ + -I../../subprojects/opensea-transport/include \ -I../../include \ - -I../../opensea-operations/include + -I../../subprojects/opensea-operations/include MACHINE := $(shell uname -m) @@ -463,9 +463,9 @@ clean: clean_all: clean rm -f *.o *.a - $(MAKE) -C ../../opensea-common/Make/vmware clean - $(MAKE) -C ../../opensea-transport/Make/vmware clean - $(MAKE) -C ../../opensea-operations/Make/vmware clean + $(MAKE) -C ../../subprojects/opensea-common/Make/vmware clean + $(MAKE) -C ../../subprojects/opensea-transport/Make/vmware clean + $(MAKE) -C ../../subprojects/opensea-operations/Make/vmware clean mkoutputdir: mkdir -p $(FILE_OUTPUT_DIR) diff --git a/opensea-common b/opensea-common deleted file mode 120000 index fdb1fcb9..00000000 --- a/opensea-common +++ /dev/null @@ -1 +0,0 @@ -subprojects/opensea-common/ \ No newline at end of file diff --git a/opensea-operations b/opensea-operations deleted file mode 120000 index e3c9b0a9..00000000 --- a/opensea-operations +++ /dev/null @@ -1 +0,0 @@ -subprojects/opensea-operations/ \ No newline at end of file diff --git a/opensea-transport b/opensea-transport deleted file mode 120000 index d76c4dac..00000000 --- a/opensea-transport +++ /dev/null @@ -1 +0,0 @@ -subprojects/opensea-transport/ \ No newline at end of file diff --git a/wingetopt b/wingetopt deleted file mode 120000 index 6edfe3a8..00000000 --- a/wingetopt +++ /dev/null @@ -1 +0,0 @@ -subprojects/wingetopt \ No newline at end of file From 21322f7db0ca37b367e374f4d86c6d6623d64541 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Mon, 9 May 2022 12:04:59 -0600 Subject: [PATCH 18/66] bug: Fixing progress check option in openSeaChest_NVMe Fixing the progress check option. It was not being checked in one location leading the tool to think the user had not entered a valid option and dumped the help instead. [Seagate/openSeaChest#84] Signed-off-by: Tyler Erickson --- utils/C/openSeaChest/openSeaChest_NVMe.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/C/openSeaChest/openSeaChest_NVMe.c b/utils/C/openSeaChest/openSeaChest_NVMe.c index 7a651a3c..e7b82cfa 100644 --- a/utils/C/openSeaChest/openSeaChest_NVMe.c +++ b/utils/C/openSeaChest/openSeaChest_NVMe.c @@ -39,7 +39,7 @@ // Global Variables // //////////////////////// const char *util_name = "openSeaChest_NVMe"; -const char *buildVersion = "2.0.6"; +const char *buildVersion = "2.0.7"; //////////////////////////// // functions to declare // @@ -752,6 +752,7 @@ int32_t main(int argc, char *argv[]) || NVME_PCI_STATS_FLAG || SHOW_SUPPORTED_FORMATS_FLAG || NVM_FORMAT_FLAG + || PROGRESS_CHAR != NULL //check for other tool specific options here )) { From 0314cb15bfeefd5774ffc32f9262b32569962e28 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Mon, 9 May 2022 12:23:07 -0600 Subject: [PATCH 19/66] ci: Removing FreeBSD 11.4 as it is well past end of life Removing building on FreeBSD 11.4 as it is well past the end of life date and the repos no longer seem active. Signed-off-by: Tyler Erickson --- .cirrus.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index c29ed3f8..730ea90f 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -4,7 +4,6 @@ task: matrix: image_family: freebsd-13-0 image_family: freebsd-12-3 - image_family: freebsd-11-4 install_script: pkg install -y git meson submodules_script: git submodule update --init --recursive --progress release_script: From 7876385bbcb73fe95024f9304ec7bb14defaca14 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Mon, 16 May 2022 11:04:14 -0600 Subject: [PATCH 20/66] lib: Pulling in fix to read-look ahead detection [Fixes Seagate/openSeaChest#85] Signed-off-by: Tyler Erickson --- subprojects/opensea-operations | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 7ea18ce1..2904401c 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 7ea18ce1396d62ab4b21975ee0c88640f72c017e +Subproject commit 2904401c2847c28eb195904e9907181b7daa4d73 From f4e6bf5ce4fe2c60a31eb6da1c4b9e878f530670 Mon Sep 17 00:00:00 2001 From: pranali-tirkhunde Date: Tue, 17 May 2022 23:41:29 +0530 Subject: [PATCH 21/66] feat: Adding support for command line option "--noBanner" Adding support for command line option "--noBanner" for all openSeaChest Tools, in order to suppress the Initial Banner displayed in output. [Seagate/openSeaChest#74] --- include/openseachest_util_options.h | 5 +++++ utils/C/openSeaChest/openSeaChest_Basics.c | 5 ++++- utils/C/openSeaChest/openSeaChest_Configure.c | 5 ++++- utils/C/openSeaChest/openSeaChest_Erase.c | 5 ++++- utils/C/openSeaChest/openSeaChest_Firmware.c | 5 ++++- utils/C/openSeaChest/openSeaChest_Format.c | 5 ++++- utils/C/openSeaChest/openSeaChest_GenericTests.c | 5 ++++- utils/C/openSeaChest/openSeaChest_Info.c | 5 ++++- utils/C/openSeaChest/openSeaChest_Logs.c | 5 ++++- utils/C/openSeaChest/openSeaChest_NVMe.c | 5 ++++- utils/C/openSeaChest/openSeaChest_PassthroughTest.c | 2 ++ utils/C/openSeaChest/openSeaChest_PowerControl.c | 5 ++++- utils/C/openSeaChest/openSeaChest_Reservations.c | 5 ++++- utils/C/openSeaChest/openSeaChest_SMART.c | 5 ++++- utils/C/openSeaChest/openSeaChest_Sample.c | 5 ++++- utils/C/openSeaChest/openSeaChest_Security.c | 5 ++++- utils/C/openSeaChest/openSeaChest_ZBD.c | 5 ++++- 17 files changed, 67 insertions(+), 15 deletions(-) diff --git a/include/openseachest_util_options.h b/include/openseachest_util_options.h index cd1d981d..a669d265 100644 --- a/include/openseachest_util_options.h +++ b/include/openseachest_util_options.h @@ -123,6 +123,11 @@ extern "C" #define SCAN_FLAGS_LONG_OPT_STRING "scanFlags" #define SCAN_FLAGS_LONG_OPT { SCAN_FLAGS_LONG_OPT_STRING, required_argument, NULL, SCAN_FLAGS_SHORT_OPT } + #define NO_BANNER_FLAG noBanner + #define NO_BANNER_VAR getOptBool NO_BANNER_FLAG = goFalse; + #define NO_BANNER_OPT_STRING "noBanner" + #define NO_BANNER_OPT { NO_BANNER_OPT_STRING, no_argument, &NO_BANNER_FLAG, goTrue} + #define SHOW_BANNER_FLAG showBanner #define SHOW_BANNER_VAR bool SHOW_BANNER_FLAG = false; #define VERSION_SHORT_OPT 'V' diff --git a/utils/C/openSeaChest/openSeaChest_Basics.c b/utils/C/openSeaChest/openSeaChest_Basics.c index fbd6b63f..2ca40586 100644 --- a/utils/C/openSeaChest/openSeaChest_Basics.c +++ b/utils/C/openSeaChest/openSeaChest_Basics.c @@ -80,6 +80,7 @@ int32_t main(int argc, char *argv[]) SCAN_FLAG_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR + NO_BANNER_VAR SHOW_HELP_VAR TEST_UNIT_READY_VAR MODEL_MATCH_VARS @@ -139,6 +140,7 @@ int32_t main(int argc, char *argv[]) SAT_INFO_LONG_OPT, USB_CHILD_INFO_LONG_OPT, SCAN_LONG_OPT, + NO_BANNER_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, VERSION_LONG_OPT, @@ -657,7 +659,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_Configure.c b/utils/C/openSeaChest/openSeaChest_Configure.c index c26291a4..bd1750e1 100644 --- a/utils/C/openSeaChest/openSeaChest_Configure.c +++ b/utils/C/openSeaChest/openSeaChest_Configure.c @@ -71,6 +71,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -130,6 +131,7 @@ int32_t main(int argc, char *argv[]) SCAN_LONG_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, + NO_BANNER_OPT, VERSION_LONG_OPT, VERBOSE_LONG_OPT, QUIET_LONG_OPT, @@ -1071,7 +1073,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_Erase.c b/utils/C/openSeaChest/openSeaChest_Erase.c index 60f2b6a1..e09ce78d 100644 --- a/utils/C/openSeaChest/openSeaChest_Erase.c +++ b/utils/C/openSeaChest/openSeaChest_Erase.c @@ -84,6 +84,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -157,6 +158,7 @@ int32_t main(int argc, char *argv[]) SAT_INFO_LONG_OPT, USB_CHILD_INFO_LONG_OPT, SCAN_LONG_OPT, + NO_BANNER_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, VERSION_LONG_OPT, @@ -784,7 +786,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_Firmware.c b/utils/C/openSeaChest/openSeaChest_Firmware.c index e1e9253c..77dc516f 100644 --- a/utils/C/openSeaChest/openSeaChest_Firmware.c +++ b/utils/C/openSeaChest/openSeaChest_Firmware.c @@ -82,6 +82,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -130,6 +131,7 @@ int32_t main(int argc, char *argv[]) SCAN_LONG_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, + NO_BANNER_OPT, VERSION_LONG_OPT, VERBOSE_LONG_OPT, QUIET_LONG_OPT, @@ -394,7 +396,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_Format.c b/utils/C/openSeaChest/openSeaChest_Format.c index 687646c1..8eec7426 100644 --- a/utils/C/openSeaChest/openSeaChest_Format.c +++ b/utils/C/openSeaChest/openSeaChest_Format.c @@ -70,6 +70,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -123,6 +124,7 @@ int32_t main(int argc, char *argv[]) SAT_INFO_LONG_OPT, USB_CHILD_INFO_LONG_OPT, SCAN_LONG_OPT, + NO_BANNER_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, VERSION_LONG_OPT, @@ -613,7 +615,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_GenericTests.c b/utils/C/openSeaChest/openSeaChest_GenericTests.c index ca1a60e2..a29c44cb 100644 --- a/utils/C/openSeaChest/openSeaChest_GenericTests.c +++ b/utils/C/openSeaChest/openSeaChest_GenericTests.c @@ -68,6 +68,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -125,6 +126,7 @@ int32_t main(int argc, char *argv[]) SAT_INFO_LONG_OPT, USB_CHILD_INFO_LONG_OPT, SCAN_LONG_OPT, + NO_BANNER_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, VERSION_LONG_OPT, @@ -542,7 +544,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_Info.c b/utils/C/openSeaChest/openSeaChest_Info.c index 26a8cb5f..6354cd97 100644 --- a/utils/C/openSeaChest/openSeaChest_Info.c +++ b/utils/C/openSeaChest/openSeaChest_Info.c @@ -72,6 +72,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -111,6 +112,7 @@ int32_t main(int argc, char *argv[]) SCAN_LONG_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, + NO_BANNER_OPT, VERSION_LONG_OPT, VERBOSE_LONG_OPT, QUIET_LONG_OPT, @@ -384,7 +386,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_Logs.c b/utils/C/openSeaChest/openSeaChest_Logs.c index b09d7a04..df0eef26 100644 --- a/utils/C/openSeaChest/openSeaChest_Logs.c +++ b/utils/C/openSeaChest/openSeaChest_Logs.c @@ -73,6 +73,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -119,6 +120,7 @@ int32_t main(int argc, char *argv[]) SAT_INFO_LONG_OPT, USB_CHILD_INFO_LONG_OPT, SCAN_LONG_OPT, + NO_BANNER_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, VERSION_LONG_OPT, @@ -394,7 +396,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_NVMe.c b/utils/C/openSeaChest/openSeaChest_NVMe.c index e7b82cfa..63bee201 100644 --- a/utils/C/openSeaChest/openSeaChest_NVMe.c +++ b/utils/C/openSeaChest/openSeaChest_NVMe.c @@ -74,6 +74,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -122,6 +123,7 @@ int32_t main(int argc, char *argv[]) SAT_INFO_LONG_OPT, //USB_CHILD_INFO_LONG_OPT, SCAN_LONG_OPT, + NO_BANNER_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, VERSION_LONG_OPT, @@ -589,7 +591,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_PassthroughTest.c b/utils/C/openSeaChest/openSeaChest_PassthroughTest.c index 7a77a7fa..81ed89ce 100644 --- a/utils/C/openSeaChest/openSeaChest_PassthroughTest.c +++ b/utils/C/openSeaChest/openSeaChest_PassthroughTest.c @@ -262,6 +262,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -304,6 +305,7 @@ int32_t main(int argc, char *argv[]) SCAN_LONG_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, + NO_BANNER_OPT, VERSION_LONG_OPT, VERBOSE_LONG_OPT, QUIET_LONG_OPT, diff --git a/utils/C/openSeaChest/openSeaChest_PowerControl.c b/utils/C/openSeaChest/openSeaChest_PowerControl.c index 54a75b20..80e537b8 100644 --- a/utils/C/openSeaChest/openSeaChest_PowerControl.c +++ b/utils/C/openSeaChest/openSeaChest_PowerControl.c @@ -69,6 +69,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -128,6 +129,7 @@ int32_t main(int argc, char *argv[]) SAT_INFO_LONG_OPT, USB_CHILD_INFO_LONG_OPT, SCAN_LONG_OPT, + NO_BANNER_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, VERSION_LONG_OPT, @@ -787,7 +789,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_Reservations.c b/utils/C/openSeaChest/openSeaChest_Reservations.c index 78da4489..b4f0d1ab 100644 --- a/utils/C/openSeaChest/openSeaChest_Reservations.c +++ b/utils/C/openSeaChest/openSeaChest_Reservations.c @@ -68,6 +68,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -120,6 +121,7 @@ int32_t main(int argc, char *argv[]) SCAN_LONG_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, + NO_BANNER_OPT, VERSION_LONG_OPT, VERBOSE_LONG_OPT, QUIET_LONG_OPT, @@ -386,7 +388,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_SMART.c b/utils/C/openSeaChest/openSeaChest_SMART.c index 63afe39b..e99b9222 100644 --- a/utils/C/openSeaChest/openSeaChest_SMART.c +++ b/utils/C/openSeaChest/openSeaChest_SMART.c @@ -71,6 +71,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -131,6 +132,7 @@ int32_t main(int argc, char *argv[]) SAT_INFO_LONG_OPT, USB_CHILD_INFO_LONG_OPT, SCAN_LONG_OPT, + NO_BANNER_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, VERSION_LONG_OPT, @@ -614,7 +616,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_Sample.c b/utils/C/openSeaChest/openSeaChest_Sample.c index 529ce2c1..161bbb85 100644 --- a/utils/C/openSeaChest/openSeaChest_Sample.c +++ b/utils/C/openSeaChest/openSeaChest_Sample.c @@ -67,6 +67,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -99,6 +100,7 @@ int32_t main(int argc, char *argv[]) SAT_INFO_LONG_OPT, USB_CHILD_INFO_LONG_OPT, SCAN_LONG_OPT, + NO_BANNER_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, VERSION_LONG_OPT, @@ -293,7 +295,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_Security.c b/utils/C/openSeaChest/openSeaChest_Security.c index 4195064a..adfe7d16 100644 --- a/utils/C/openSeaChest/openSeaChest_Security.c +++ b/utils/C/openSeaChest/openSeaChest_Security.c @@ -81,6 +81,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -141,6 +142,7 @@ int32_t main(int argc, char *argv[]) SAT_INFO_LONG_OPT, USB_CHILD_INFO_LONG_OPT, SCAN_LONG_OPT, + NO_BANNER_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, VERSION_LONG_OPT, @@ -638,7 +640,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) diff --git a/utils/C/openSeaChest/openSeaChest_ZBD.c b/utils/C/openSeaChest/openSeaChest_ZBD.c index b39b78c0..e4a2a9af 100644 --- a/utils/C/openSeaChest/openSeaChest_ZBD.c +++ b/utils/C/openSeaChest/openSeaChest_ZBD.c @@ -67,6 +67,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -106,6 +107,7 @@ int32_t main(int argc, char *argv[]) SCAN_LONG_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, + NO_BANNER_OPT, VERSION_LONG_OPT, VERBOSE_LONG_OPT, QUIET_LONG_OPT, @@ -382,7 +384,8 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + if (!NO_BANNER_FLAG) + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) From 684d90bd7e5a7aa7e695c4aaa4ed10e46b994f6b Mon Sep 17 00:00:00 2001 From: pranali-tirkhunde Date: Thu, 19 May 2022 10:00:33 +0530 Subject: [PATCH 22/66] quick: Adding support for --noBanner Flag for all openSeaChest utilities Adding a small tweak in the code for the condition under which we should print the openSeaChest banner. Adding the help description for --noBanner in all the openSeaChest utilities. [Seagate/openSeaChest#74] --- include/openseachest_util_options.h | 2 ++ src/openseachest_util_options.c | 10 ++++++++++ utils/C/openSeaChest/openSeaChest_Basics.c | 6 +++--- utils/C/openSeaChest/openSeaChest_Configure.c | 6 +++--- utils/C/openSeaChest/openSeaChest_Erase.c | 6 +++--- utils/C/openSeaChest/openSeaChest_Firmware.c | 6 +++--- utils/C/openSeaChest/openSeaChest_Format.c | 6 +++--- utils/C/openSeaChest/openSeaChest_GenericTests.c | 6 +++--- utils/C/openSeaChest/openSeaChest_Info.c | 6 +++--- utils/C/openSeaChest/openSeaChest_Logs.c | 6 +++--- utils/C/openSeaChest/openSeaChest_NVMe.c | 6 +++--- utils/C/openSeaChest/openSeaChest_PassthroughTest.c | 3 ++- utils/C/openSeaChest/openSeaChest_PowerControl.c | 6 +++--- utils/C/openSeaChest/openSeaChest_Reservations.c | 6 +++--- utils/C/openSeaChest/openSeaChest_SMART.c | 6 +++--- utils/C/openSeaChest/openSeaChest_Sample.c | 6 +++--- utils/C/openSeaChest/openSeaChest_Security.c | 6 +++--- utils/C/openSeaChest/openSeaChest_ZBD.c | 6 +++--- 18 files changed, 59 insertions(+), 46 deletions(-) diff --git a/include/openseachest_util_options.h b/include/openseachest_util_options.h index a669d265..0a711375 100644 --- a/include/openseachest_util_options.h +++ b/include/openseachest_util_options.h @@ -3253,6 +3253,8 @@ extern "C" void print_No_Time_Limit_Help(bool shortHelp); + void print_No_Banner_Help(bool shortUsage); + void print_SAS_Phy_Partial_Help(bool shortHelp); void print_SAS_Phy_Slumber_Help(bool shortHelp); diff --git a/src/openseachest_util_options.c b/src/openseachest_util_options.c index 617f656e..d90d323c 100644 --- a/src/openseachest_util_options.c +++ b/src/openseachest_util_options.c @@ -3887,6 +3887,16 @@ void print_No_Time_Limit_Help(bool shortHelp) } } +void print_No_Banner_Help(bool shortHelp) +{ + printf("\t--%s\n", NO_BANNER_OPT_STRING); + if (!shortHelp) + { + printf("\t\tUse this option to suppress the text banner that displays each time\n"); + printf("\t\topenSeaChest is run.\n\n"); + } +} + void print_Show_Power_Telemetry_Help(bool shortHelp) { printf("\t--%s\t(Seagate Only)\n", SHOW_POWER_TELEMETRY_LONG_OPT_STRING); diff --git a/utils/C/openSeaChest/openSeaChest_Basics.c b/utils/C/openSeaChest/openSeaChest_Basics.c index 2ca40586..372535bf 100644 --- a/utils/C/openSeaChest/openSeaChest_Basics.c +++ b/utils/C/openSeaChest/openSeaChest_Basics.c @@ -657,10 +657,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -2187,6 +2186,7 @@ void utility_Usage(bool shortUsage) print_Time_Minutes_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_No_Time_Limit_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); print_Time_Seconds_Help(shortUsage); diff --git a/utils/C/openSeaChest/openSeaChest_Configure.c b/utils/C/openSeaChest/openSeaChest_Configure.c index bd1750e1..3c85023d 100644 --- a/utils/C/openSeaChest/openSeaChest_Configure.c +++ b/utils/C/openSeaChest/openSeaChest_Configure.c @@ -1071,10 +1071,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -3073,6 +3072,7 @@ void utility_Usage(bool shortUsage) print_Help_Help(shortUsage); print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_Erase.c b/utils/C/openSeaChest/openSeaChest_Erase.c index e09ce78d..1abc0e15 100644 --- a/utils/C/openSeaChest/openSeaChest_Erase.c +++ b/utils/C/openSeaChest/openSeaChest_Erase.c @@ -784,10 +784,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -2549,6 +2548,7 @@ void utility_Usage(bool shortUsage) print_Hide_LBA_Counter_Help(shortUsage); print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_Firmware.c b/utils/C/openSeaChest/openSeaChest_Firmware.c index 77dc516f..6e7d8037 100644 --- a/utils/C/openSeaChest/openSeaChest_Firmware.c +++ b/utils/C/openSeaChest/openSeaChest_Firmware.c @@ -394,10 +394,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -1299,6 +1298,7 @@ void utility_Usage(bool shortUsage) print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); print_New_Firmware_Revision_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_Format.c b/utils/C/openSeaChest/openSeaChest_Format.c index 8eec7426..2886996f 100644 --- a/utils/C/openSeaChest/openSeaChest_Format.c +++ b/utils/C/openSeaChest/openSeaChest_Format.c @@ -613,10 +613,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -1864,6 +1863,7 @@ void utility_Usage(bool shortUsage) print_Help_Help(shortUsage); print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_GenericTests.c b/utils/C/openSeaChest/openSeaChest_GenericTests.c index a29c44cb..8d866209 100644 --- a/utils/C/openSeaChest/openSeaChest_GenericTests.c +++ b/utils/C/openSeaChest/openSeaChest_GenericTests.c @@ -542,10 +542,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -1513,6 +1512,7 @@ void utility_Usage(bool shortUsage) print_Hide_LBA_Counter_Help(shortUsage); print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_Info.c b/utils/C/openSeaChest/openSeaChest_Info.c index 6354cd97..817b468b 100644 --- a/utils/C/openSeaChest/openSeaChest_Info.c +++ b/utils/C/openSeaChest/openSeaChest_Info.c @@ -384,10 +384,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -1005,6 +1004,7 @@ void utility_Usage(bool shortUsage) print_Help_Help(shortUsage); print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_Logs.c b/utils/C/openSeaChest/openSeaChest_Logs.c index df0eef26..06459b7b 100644 --- a/utils/C/openSeaChest/openSeaChest_Logs.c +++ b/utils/C/openSeaChest/openSeaChest_Logs.c @@ -394,10 +394,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -1203,6 +1202,7 @@ void utility_Usage(bool shortUsage) print_Help_Help(shortUsage); print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_OutputPath_Help(shortUsage); diff --git a/utils/C/openSeaChest/openSeaChest_NVMe.c b/utils/C/openSeaChest/openSeaChest_NVMe.c index 63bee201..4ca6c246 100644 --- a/utils/C/openSeaChest/openSeaChest_NVMe.c +++ b/utils/C/openSeaChest/openSeaChest_NVMe.c @@ -589,10 +589,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -2058,6 +2057,7 @@ void utility_Usage(bool shortUsage) print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); print_New_Firmware_Revision_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_PassthroughTest.c b/utils/C/openSeaChest/openSeaChest_PassthroughTest.c index 81ed89ce..2002fd43 100644 --- a/utils/C/openSeaChest/openSeaChest_PassthroughTest.c +++ b/utils/C/openSeaChest/openSeaChest_PassthroughTest.c @@ -560,7 +560,7 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } @@ -8446,6 +8446,7 @@ void utility_Usage(bool shortUsage) print_Help_Help(shortUsage); print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_PowerControl.c b/utils/C/openSeaChest/openSeaChest_PowerControl.c index 80e537b8..7c41fb01 100644 --- a/utils/C/openSeaChest/openSeaChest_PowerControl.c +++ b/utils/C/openSeaChest/openSeaChest_PowerControl.c @@ -787,10 +787,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -2656,6 +2655,7 @@ void utility_Usage(bool shortUsage) print_Help_Help(shortUsage); print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_Reservations.c b/utils/C/openSeaChest/openSeaChest_Reservations.c index b4f0d1ab..5b9f15b0 100644 --- a/utils/C/openSeaChest/openSeaChest_Reservations.c +++ b/utils/C/openSeaChest/openSeaChest_Reservations.c @@ -386,10 +386,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -1393,6 +1392,7 @@ void utility_Usage(bool shortUsage) print_Help_Help(shortUsage); print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_SMART.c b/utils/C/openSeaChest/openSeaChest_SMART.c index e99b9222..eb72650a 100644 --- a/utils/C/openSeaChest/openSeaChest_SMART.c +++ b/utils/C/openSeaChest/openSeaChest_SMART.c @@ -614,10 +614,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -2082,6 +2081,7 @@ void utility_Usage(bool shortUsage) print_Model_Match_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_No_Time_Limit_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); print_Verbose_Help(shortUsage); diff --git a/utils/C/openSeaChest/openSeaChest_Sample.c b/utils/C/openSeaChest/openSeaChest_Sample.c index 161bbb85..98948d55 100644 --- a/utils/C/openSeaChest/openSeaChest_Sample.c +++ b/utils/C/openSeaChest/openSeaChest_Sample.c @@ -293,10 +293,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -797,6 +796,7 @@ void utility_Usage(bool shortUsage) print_Help_Help(shortUsage); print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_Security.c b/utils/C/openSeaChest/openSeaChest_Security.c index adfe7d16..7967e6e5 100644 --- a/utils/C/openSeaChest/openSeaChest_Security.c +++ b/utils/C/openSeaChest/openSeaChest_Security.c @@ -638,10 +638,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -1744,6 +1743,7 @@ void utility_Usage(bool shortUsage) print_Help_Help(shortUsage); print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_ZBD.c b/utils/C/openSeaChest/openSeaChest_ZBD.c index e4a2a9af..11058e5b 100644 --- a/utils/C/openSeaChest/openSeaChest_ZBD.c +++ b/utils/C/openSeaChest/openSeaChest_ZBD.c @@ -382,10 +382,9 @@ int32_t main(int argc, char *argv[]) printf("\n"); } - if (VERBOSITY_QUIET < toolVerbosity) + if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - if (!NO_BANNER_FLAG) - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -1131,6 +1130,7 @@ void utility_Usage(bool shortUsage) print_Help_Help(shortUsage); print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); From c10fbcda88af0d1336b85f7e98b1f5faebd2b7f8 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Tue, 24 May 2022 09:40:53 -0600 Subject: [PATCH 23/66] doc: Adding additional comments about disabling OOB systems to some options Adding some additional warnings to disable any out-of-band (OOB) management system/service/daemon to reduce the likelihood of fast fomat/set sector size from being interrupted as this can cause some strange problems. [Seagate/ToolBin#23] Signed-off-by: Tyler Erickson --- src/openseachest_util_options.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/openseachest_util_options.c b/src/openseachest_util_options.c index d90d323c..45089ed5 100644 --- a/src/openseachest_util_options.c +++ b/src/openseachest_util_options.c @@ -2152,6 +2152,9 @@ void print_Fast_Format_Help(bool shortHelp) printf("\t\t logical sector size quickly. Media may or may not be\n"); printf("\t\t read accessible until a write has been performed to\n"); printf("\t\t the media.\n\n"); + printf("\t\tWARNING: Disable any out-of-band management systems/services/daemons\n"); + printf("\t\t before using this option. Interruptions can be caused by these\n"); + printf("\t\t and may prevent completion of a fast format operation.\n\n"); } } @@ -2303,7 +2306,10 @@ void print_Set_Sector_Size_Help(bool shortHelp) printf("\t\t activity that would attempt to communicate with the device while this\n"); printf("\t\t operation is in progress\n"); printf("\t\tWARNING: It is not recommended to do this on USB as not\n"); - printf("\t\t all USB adapters can handle a 4k sector size.\n\n"); + printf("\t\t all USB adapters can handle a 4k sector size.\n"); + printf("\t\tWARNING: Disable any out-of-band management systems/services/daemons\n"); + printf("\t\t before using this option. Interruptions can be caused by these\n"); + printf("\t\t and may prevent completion of a sector size change.\n\n"); } } From 5e015e6f66dbf6ca25245ba7270cfd6d137fc609 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Tue, 24 May 2022 09:41:05 -0600 Subject: [PATCH 24/66] lib: Pulling in latest library changes Signed-off-by: Tyler Erickson --- subprojects/opensea-common | 2 +- subprojects/opensea-transport | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/opensea-common b/subprojects/opensea-common index 0bebc1ca..3a4e1a60 160000 --- a/subprojects/opensea-common +++ b/subprojects/opensea-common @@ -1 +1 @@ -Subproject commit 0bebc1ca22d0ea93d67c63a1917b488dea097a18 +Subproject commit 3a4e1a60f3754043abba0ca92607579bdbc51cc3 diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index f53c58f1..44ecf9f2 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit f53c58f12f75b44ee1167c76c6c287b0348d0643 +Subproject commit 44ecf9f27014253b92c426d4cd51c49307c50d8a From b8f4f3ea65915ade719bbfdd7d30a393507e27c4 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Tue, 24 May 2022 09:50:35 -0600 Subject: [PATCH 25/66] lib: Pulling in a format corrupt message output in features list Signed-off-by: Tyler Erickson --- subprojects/opensea-operations | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 2904401c..7c83eb76 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 2904401c2847c28eb195904e9907181b7daa4d73 +Subproject commit 7c83eb76481b139d78d005cd875e8bfdb761e614 From 5596e36156fa4c402f63d7bef406c7b7081b1b98 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Wed, 25 May 2022 22:07:21 -0600 Subject: [PATCH 26/66] lib: updates to better support legacy drives and modern SATA drives Pulling in updates that stop setting some very long obsolete bits on SATA drives while maintaining backwards compatibility with PATA drives. Also pulling in some updates for handling old PATA and SATA drives that may only support single sector SMART logs, so the SMART directory will not be available in this case. All of these updates improve backwards compatibility with older devices without taking anything away from current SATA drives. Signed-off-by: Tyler Erickson --- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 7c83eb76..f0e97d4b 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 7c83eb76481b139d78d005cd875e8bfdb761e614 +Subproject commit f0e97d4b84a303f16a32f1b5c0f83caf2f9c0ce6 diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 44ecf9f2..9bd32fe7 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 44ecf9f27014253b92c426d4cd51c49307c50d8a +Subproject commit 9bd32fe784b5869502ae5ea2164ecd8013735f1d From e6a720b199d17b62977d0490c49d7bdcfa02ee41 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Wed, 1 Jun 2022 14:45:27 -0600 Subject: [PATCH 27/66] feat: Adding separate string for possible data erasure Adding another confirmation string for possible data erasure. Since some operations data erasure may be left up to device firmware, having a separate prompt for possible data erasure makes sense for clarity for the user. To maintain backwards compatibility any operation that supports the new "this-may-erase-data" will also accept the "this-will-erase-data". If either of these is missing, the appropriate will/may string will show to differentiate which operations will and may erase data when they are run. [Seagate/ToolBin#24] Signed-off-by: Tyler Erickson --- include/openseachest_util_options.h | 3 ++ utils/C/openSeaChest/openSeaChest_Basics.c | 13 +++-- utils/C/openSeaChest/openSeaChest_Configure.c | 11 ++-- utils/C/openSeaChest/openSeaChest_Erase.c | 43 ++++++++++----- utils/C/openSeaChest/openSeaChest_Format.c | 54 ++++++++++++------- 5 files changed, 85 insertions(+), 39 deletions(-) diff --git a/include/openseachest_util_options.h b/include/openseachest_util_options.h index 0a711375..9fe75baa 100644 --- a/include/openseachest_util_options.h +++ b/include/openseachest_util_options.h @@ -227,9 +227,12 @@ extern "C" #define PROGRESS_LONG_OPT { PROGRESS_LONG_OPT_STRING, required_argument, NULL, PROGRESS_SHORT_OPT } #define DATA_ERASE_ACCEPT_STRING "this-will-erase-data" + #define POSSIBLE_DATA_ERASE_ACCEPT_STRING "this-may-erase-data" #define LONG_TEST_ACCEPT_STRING "I-understand-this-command-will-take-a-long-time-to-complete" #define SINGLE_SECTOR_DATA_ERASE_ACCEPT_STRING "I-understand-this-command-may-erase-single-sectors-if-they-are-already-unreadable" + #define POSSIBLE_DATA_ERASE_FLAG possibleDataEraseAccepted + #define POSSIBLE_DATA_ERASE_VAR bool POSSIBLE_DATA_ERASE_FLAG = false; #define DATA_ERASE_FLAG dataEraseAccepted #define DATA_ERASE_VAR bool DATA_ERASE_FLAG = false; #define LONG_TEST_FLAG longOperationAccepted diff --git a/utils/C/openSeaChest/openSeaChest_Basics.c b/utils/C/openSeaChest/openSeaChest_Basics.c index 372535bf..22450e3e 100644 --- a/utils/C/openSeaChest/openSeaChest_Basics.c +++ b/utils/C/openSeaChest/openSeaChest_Basics.c @@ -42,7 +42,7 @@ //////////////////////// const char *util_name = "openSeaChest_Basics"; -const char *buildVersion = "3.2.3"; +const char *buildVersion = "3.3.0"; //////////////////////////// // functions to declare // @@ -75,6 +75,7 @@ int32_t main(int argc, char *argv[]) DEVICE_INFO_VAR SAT_INFO_VAR DATA_ERASE_VAR + POSSIBLE_DATA_ERASE_VAR LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR @@ -234,6 +235,10 @@ int32_t main(int argc, char *argv[]) { DATA_ERASE_FLAG = true; } + else if (strlen(optarg) == strlen(POSSIBLE_DATA_ERASE_ACCEPT_STRING) && strncmp(optarg, POSSIBLE_DATA_ERASE_ACCEPT_STRING, strlen(POSSIBLE_DATA_ERASE_ACCEPT_STRING)) == 0) + { + POSSIBLE_DATA_ERASE_FLAG = true; + } else { print_Error_In_Cmd_Line_Args(CONFIRM_LONG_OPT_STRING, optarg); @@ -1862,7 +1867,7 @@ int32_t main(int argc, char *argv[]) { localRange = deviceList[deviceIter].drive_info.deviceMaxLba - localStartLBA + 1; } - if (DATA_ERASE_FLAG) + if (POSSIBLE_DATA_ERASE_FLAG || DATA_ERASE_FLAG) { switch (trim_Unmap_Range(&deviceList[deviceIter], localStartLBA, localRange)) { @@ -1893,9 +1898,9 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { printf("\n"); - printf("You must add the flag:\n\"%s\" \n", DATA_ERASE_ACCEPT_STRING); + printf("You must add the flag:\n\"%s\" \n", POSSIBLE_DATA_ERASE_ACCEPT_STRING); printf("to the command line arguments to run a trim/unmap operation.\n\n"); - printf("e.g.: %s -d %s --%s 0 --%s %s\n\n", util_name, deviceHandleExample, TRIM_LONG_OPT_STRING, CONFIRM_LONG_OPT_STRING, DATA_ERASE_ACCEPT_STRING); + printf("e.g.: %s -d %s --%s 0 --%s %s\n\n", util_name, deviceHandleExample, TRIM_LONG_OPT_STRING, CONFIRM_LONG_OPT_STRING, POSSIBLE_DATA_ERASE_ACCEPT_STRING); } } } diff --git a/utils/C/openSeaChest/openSeaChest_Configure.c b/utils/C/openSeaChest/openSeaChest_Configure.c index 3c85023d..feaada1f 100644 --- a/utils/C/openSeaChest/openSeaChest_Configure.c +++ b/utils/C/openSeaChest/openSeaChest_Configure.c @@ -36,7 +36,7 @@ // Global Variables // //////////////////////// const char *util_name = "openSeaChest_Configure"; -const char *buildVersion = "2.0.7"; +const char *buildVersion = "2.1.0"; //////////////////////////// // functions to declare // @@ -68,6 +68,7 @@ int32_t main(int argc, char *argv[]) DEVICE_INFO_VAR SAT_INFO_VAR DATA_ERASE_VAR + POSSIBLE_DATA_ERASE_VAR LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR @@ -216,6 +217,10 @@ int32_t main(int argc, char *argv[]) { DATA_ERASE_FLAG = true; } + else if (strlen(optarg) == strlen(POSSIBLE_DATA_ERASE_ACCEPT_STRING) && strncmp(optarg, POSSIBLE_DATA_ERASE_ACCEPT_STRING, strlen(POSSIBLE_DATA_ERASE_ACCEPT_STRING)) == 0) + { + POSSIBLE_DATA_ERASE_FLAG = true; + } else { print_Error_In_Cmd_Line_Args(CONFIRM_LONG_OPT_STRING, optarg); @@ -2288,7 +2293,7 @@ int32_t main(int argc, char *argv[]) { localRange = deviceList[deviceIter].drive_info.deviceMaxLba - localStartLBA + 1; } - if (DATA_ERASE_FLAG) + if (POSSIBLE_DATA_ERASE_FLAG || DATA_ERASE_FLAG) { switch (trim_Unmap_Range(&deviceList[deviceIter], localStartLBA, localRange)) { @@ -2321,7 +2326,7 @@ int32_t main(int argc, char *argv[]) printf("\n"); printf("You must add the flag:\n\"%s\" \n", DATA_ERASE_ACCEPT_STRING); printf("to the command line arguments to run a trim/unmap operation.\n\n"); - printf("e.g.: %s -d %s --%s 0 --%s %s\n\n", util_name, deviceHandleExample, TRIM_LONG_OPT_STRING, CONFIRM_LONG_OPT_STRING, DATA_ERASE_ACCEPT_STRING); + printf("e.g.: %s -d %s --%s 0 --%s %s\n\n", util_name, deviceHandleExample, TRIM_LONG_OPT_STRING, POSSIBLE_DATA_ERASE_ACCEPT_STRING, POSSIBLE_DATA_ERASE_ACCEPT_STRING); } } } diff --git a/utils/C/openSeaChest/openSeaChest_Erase.c b/utils/C/openSeaChest/openSeaChest_Erase.c index 1abc0e15..017dd880 100644 --- a/utils/C/openSeaChest/openSeaChest_Erase.c +++ b/utils/C/openSeaChest/openSeaChest_Erase.c @@ -49,7 +49,7 @@ // Global Variables // //////////////////////// const char *util_name = "openSeaChest_Erase"; -const char *buildVersion = "3.1.5"; +const char *buildVersion = "3.2.0"; //////////////////////////// // functions to declare // @@ -81,6 +81,7 @@ int32_t main(int argc, char *argv[]) DEVICE_INFO_VAR SAT_INFO_VAR DATA_ERASE_VAR + POSSIBLE_DATA_ERASE_VAR LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR @@ -249,10 +250,14 @@ int32_t main(int argc, char *argv[]) //parse long options that have no short option and required arguments here if (strcmp(longopts[optionIndex].name, CONFIRM_LONG_OPT_STRING) == 0) { - if (strlen(optarg) == strlen(DATA_ERASE_ACCEPT_STRING) && strncmp(optarg, DATA_ERASE_ACCEPT_STRING, strlen(DATA_ERASE_ACCEPT_STRING)) == 0) + if (strlen(optarg) == strlen(DATA_ERASE_ACCEPT_STRING) && strcmp(optarg, DATA_ERASE_ACCEPT_STRING) == 0) { DATA_ERASE_FLAG = true; } + else if (strlen(optarg) == strlen(POSSIBLE_DATA_ERASE_ACCEPT_STRING) && strcmp(optarg, POSSIBLE_DATA_ERASE_ACCEPT_STRING) == 0) + { + POSSIBLE_DATA_ERASE_FLAG = true; + } else { print_Error_In_Cmd_Line_Args(CONFIRM_LONG_OPT_STRING, optarg); @@ -1373,7 +1378,7 @@ int32_t main(int argc, char *argv[]) if (SUCCESS == read_LBA(&deviceList[deviceIter], DISPLAY_LBA_THE_LBA, false, displaySector, deviceList[deviceIter].drive_info.deviceBlockSize)) { printf("\nContents of LBA %"PRIu64":\n", DISPLAY_LBA_THE_LBA); - print_Data_Buffer(displaySector, deviceList[deviceIter].drive_info.deviceBlockSize, true); + print_Data_Buffer(displaySector, deviceList[deviceIter].drive_info.deviceBlockSize, false); } else { @@ -1518,7 +1523,7 @@ int32_t main(int argc, char *argv[]) { printf("The --%s option is obsolete in %s. It has been moved to openSeaChest_Format.\n", REMOVE_PHYSICAL_ELEMENT_LONG_OPT_STRING, util_name); } - if (DATA_ERASE_FLAG) + if (POSSIBLE_DATA_ERASE_FLAG || DATA_ERASE_FLAG) { bool depopSupport = is_Depopulation_Feature_Supported(&deviceList[deviceIter], NULL); if (depopSupport) @@ -1565,9 +1570,9 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { printf("\n"); - printf("You must add the flag:\n\"%s\" \n", DATA_ERASE_ACCEPT_STRING); + printf("You must add the flag:\n\"%s\" \n", POSSIBLE_DATA_ERASE_ACCEPT_STRING); printf("to the command line arguments to run a remove physical element command.\n\n"); - printf("e.g.: %s -d %s --%s element# --confirm %s\n\n", util_name, deviceHandleExample, REMOVE_PHYSICAL_ELEMENT_LONG_OPT_STRING, DATA_ERASE_ACCEPT_STRING); + printf("e.g.: %s -d %s --%s element# --confirm %s\n\n", util_name, deviceHandleExample, REMOVE_PHYSICAL_ELEMENT_LONG_OPT_STRING, POSSIBLE_DATA_ERASE_ACCEPT_STRING); } } } @@ -1999,7 +2004,7 @@ int32_t main(int argc, char *argv[]) { printf("Format Unit\n"); } - if (DATA_ERASE_FLAG) + if ((FAST_FORMAT_FLAG > 0 && POSSIBLE_DATA_ERASE_FLAG) || DATA_ERASE_FLAG) { bool currentBlockSize = true; runFormatUnitParameters formatUnitParameters; @@ -2083,10 +2088,20 @@ int32_t main(int argc, char *argv[]) { if (VERBOSITY_QUIET < toolVerbosity) { - printf("\n"); - printf("You must add the flag:\n\"%s\" \n", DATA_ERASE_ACCEPT_STRING); - printf("to the command line arguments to run a format unit.\n\n"); - printf("e.g.: %s -d %s --%s current --confirm %s\n\n", util_name, deviceHandleExample, FORMAT_UNIT_LONG_OPT_STRING, DATA_ERASE_ACCEPT_STRING); + if (FAST_FORMAT_FLAG > 0) + { + printf("\n"); + printf("You must add the flag:\n\"%s\" \n", POSSIBLE_DATA_ERASE_ACCEPT_STRING); + printf("to the command line arguments to run a format unit.\n\n"); + printf("e.g.: %s -d %s --%s current --%s 1 --confirm %s\n\n", util_name, deviceHandleExample, FORMAT_UNIT_LONG_OPT_STRING, FAST_FORMAT_LONG_OPT_STRING, POSSIBLE_DATA_ERASE_ACCEPT_STRING); + } + else + { + printf("\n"); + printf("You must add the flag:\n\"%s\" \n", DATA_ERASE_ACCEPT_STRING); + printf("to the command line arguments to run a format unit.\n\n"); + printf("e.g.: %s -d %s --%s current --confirm %s\n\n", util_name, deviceHandleExample, FORMAT_UNIT_LONG_OPT_STRING, DATA_ERASE_ACCEPT_STRING); + } } } } @@ -2263,7 +2278,7 @@ int32_t main(int argc, char *argv[]) { localRange = deviceList[deviceIter].drive_info.deviceMaxLba - localStartLBA + 1; } - if (DATA_ERASE_FLAG) + if (POSSIBLE_DATA_ERASE_FLAG || DATA_ERASE_FLAG) { switch (trim_Unmap_Range(&deviceList[deviceIter], localStartLBA, localRange)) { @@ -2294,9 +2309,9 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { printf("\n"); - printf("You must add the flag:\n\"%s\" \n", DATA_ERASE_ACCEPT_STRING); + printf("You must add the flag:\n\"%s\" \n", POSSIBLE_DATA_ERASE_ACCEPT_STRING); printf("to the command line arguments to run a trim/unmap operation.\n\n"); - printf("e.g.: %s -d %s --%s 0 --%s %s\n\n", util_name, deviceHandleExample, TRIM_LONG_OPT_STRING, CONFIRM_LONG_OPT_STRING, DATA_ERASE_ACCEPT_STRING); + printf("e.g.: %s -d %s --%s 0 --%s %s\n\n", util_name, deviceHandleExample, TRIM_LONG_OPT_STRING, CONFIRM_LONG_OPT_STRING, POSSIBLE_DATA_ERASE_ACCEPT_STRING); } } } diff --git a/utils/C/openSeaChest/openSeaChest_Format.c b/utils/C/openSeaChest/openSeaChest_Format.c index 2886996f..783a4916 100644 --- a/utils/C/openSeaChest/openSeaChest_Format.c +++ b/utils/C/openSeaChest/openSeaChest_Format.c @@ -35,7 +35,7 @@ // Global Variables // //////////////////////// const char *util_name = "openSeaChest_Format"; -const char *buildVersion = "2.3.5"; +const char *buildVersion = "2.4.0"; //////////////////////////// // functions to declare // @@ -67,6 +67,7 @@ int32_t main(int argc, char *argv[]) DEVICE_INFO_VAR SAT_INFO_VAR DATA_ERASE_VAR + POSSIBLE_DATA_ERASE_VAR LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR @@ -206,6 +207,10 @@ int32_t main(int argc, char *argv[]) { DATA_ERASE_FLAG = true; } + else if (strlen(optarg) == strlen(POSSIBLE_DATA_ERASE_ACCEPT_STRING) && strncmp(optarg, POSSIBLE_DATA_ERASE_ACCEPT_STRING, strlen(POSSIBLE_DATA_ERASE_ACCEPT_STRING)) == 0) + { + POSSIBLE_DATA_ERASE_FLAG = true; + } else { print_Error_In_Cmd_Line_Args(CONFIRM_LONG_OPT_STRING, optarg); @@ -1226,7 +1231,7 @@ int32_t main(int argc, char *argv[]) { printf("Format Unit\n"); } - if (DATA_ERASE_FLAG) + if (DATA_ERASE_FLAG || (FAST_FORMAT_FLAG > 0 && POSSIBLE_DATA_ERASE_FLAG)) { bool currentBlockSize = true; runFormatUnitParameters formatUnitParameters; @@ -1322,17 +1327,27 @@ int32_t main(int argc, char *argv[]) { if (VERBOSITY_QUIET < toolVerbosity) { - printf("\n"); - printf("You must add the flag:\n\"%s\" \n", DATA_ERASE_ACCEPT_STRING); - printf("to the command line arguments to run a format unit.\n\n"); - printf("e.g.: %s -d %s --%s current --confirm %s\n\n", util_name, deviceHandleExample, FORMAT_UNIT_LONG_OPT_STRING, DATA_ERASE_ACCEPT_STRING); + if (FAST_FORMAT_FLAG > 0) + { + printf("\n"); + printf("You must add the flag:\n\"%s\" \n", POSSIBLE_DATA_ERASE_ACCEPT_STRING); + printf("to the command line arguments to run a format unit.\n\n"); + printf("e.g.: %s -d %s --%s current --%s 1 --confirm %s\n\n", util_name, deviceHandleExample, FORMAT_UNIT_LONG_OPT_STRING, FAST_FORMAT_LONG_OPT_STRING, POSSIBLE_DATA_ERASE_ACCEPT_STRING); + } + else + { + printf("\n"); + printf("You must add the flag:\n\"%s\" \n", DATA_ERASE_ACCEPT_STRING); + printf("to the command line arguments to run a format unit.\n\n"); + printf("e.g.: %s -d %s --%s current --confirm %s\n\n", util_name, deviceHandleExample, FORMAT_UNIT_LONG_OPT_STRING, DATA_ERASE_ACCEPT_STRING); + } } } } if (SEAGATE_SATA_QUICK_FORMAT) { - if (DATA_ERASE_FLAG) + if (POSSIBLE_DATA_ERASE_FLAG || DATA_ERASE_FLAG) { if (is_Seagate_Quick_Format_Supported(&deviceList[deviceIter]) || FORCE_FLAG) { @@ -1384,16 +1399,16 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { printf("\n"); - printf("You must add the flag:\n\"%s\" \n", DATA_ERASE_ACCEPT_STRING); + printf("You must add the flag:\n\"%s\" \n", POSSIBLE_DATA_ERASE_ACCEPT_STRING); printf("to the command line arguments to run a quick format.\n\n"); - printf("e.g.: %s -d %s --%s --confirm %s\n\n", util_name, deviceHandleExample, SEAGATE_SATA_QUICK_FORMAT_LONG_OPT_STRING, DATA_ERASE_ACCEPT_STRING); + printf("e.g.: %s -d %s --%s --confirm %s\n\n", util_name, deviceHandleExample, SEAGATE_SATA_QUICK_FORMAT_LONG_OPT_STRING, POSSIBLE_DATA_ERASE_ACCEPT_STRING); } } } if (SET_SECTOR_SIZE_FLAG) { - if (DATA_ERASE_FLAG) + if (POSSIBLE_DATA_ERASE_FLAG || DATA_ERASE_FLAG) { if (VERBOSITY_QUIET < toolVerbosity) { @@ -1485,22 +1500,25 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { printf("\n"); - printf("You must add the flag:\n\"%s\" \n", DATA_ERASE_ACCEPT_STRING); + printf("You must add the flag:\n\"%s\" \n", POSSIBLE_DATA_ERASE_ACCEPT_STRING); printf("to the command line arguments to run a set sector size operation.\n\n"); - printf("e.g.: %s -d %s --%s 4096 --%s %s\n\n", util_name, deviceHandleExample, SET_SECTOR_SIZE_LONG_OPT_STRING, CONFIRM_LONG_OPT_STRING, DATA_ERASE_ACCEPT_STRING); + printf("e.g.: %s -d %s --%s 4096 --%s %s\n\n", util_name, deviceHandleExample, SET_SECTOR_SIZE_LONG_OPT_STRING, CONFIRM_LONG_OPT_STRING, POSSIBLE_DATA_ERASE_ACCEPT_STRING); printf("WARNING: It is not recommended to do this on USB as not\n"); printf(" all USB adapters can handle a 4k sector size.\n\n"); printf("WARNING (SATA): Do not interrupt this operation once it has started or \n"); printf(" it may cause the drive to become unusable. Stop all possible background\n"); printf(" activity that would attempt to communicate with the device while this\n"); printf(" operation is in progress\n\n"); + printf("\t\tWARNING: Disable any out-of-band management systems/services/daemons\n"); + printf("\t\t before using this option. Interruptions can be caused by these\n"); + printf("\t\t and may prevent completion of a fast format operation.\n\n"); } } } if (REMOVE_PHYSICAL_ELEMENT_FLAG > 0) { - if (DATA_ERASE_FLAG) + if (POSSIBLE_DATA_ERASE_FLAG || DATA_ERASE_FLAG) { bool depopSupport = is_Depopulation_Feature_Supported(&deviceList[deviceIter], NULL); if (depopSupport) @@ -1554,16 +1572,16 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { printf("\n"); - printf("You must add the flag:\n\"%s\" \n", DATA_ERASE_ACCEPT_STRING); + printf("You must add the flag:\n\"%s\" \n", POSSIBLE_DATA_ERASE_ACCEPT_STRING); printf("to the command line arguments to run a remove physical element command.\n\n"); - printf("e.g.: %s -d %s --%s element# --confirm %s\n\n", util_name, deviceHandleExample, REMOVE_PHYSICAL_ELEMENT_LONG_OPT_STRING, DATA_ERASE_ACCEPT_STRING); + printf("e.g.: %s -d %s --%s element# --confirm %s\n\n", util_name, deviceHandleExample, REMOVE_PHYSICAL_ELEMENT_LONG_OPT_STRING, POSSIBLE_DATA_ERASE_ACCEPT_STRING); } } } if (REPOPULATE_ELEMENTS_FLAG) { - if (DATA_ERASE_FLAG) + if (POSSIBLE_DATA_ERASE_FLAG || DATA_ERASE_FLAG) { bool repopSupport = is_Repopulate_Feature_Supported(&deviceList[deviceIter], NULL); if (repopSupport) @@ -1616,9 +1634,9 @@ int32_t main(int argc, char *argv[]) if (VERBOSITY_QUIET < toolVerbosity) { printf("\n"); - printf("You must add the flag:\n\"%s\" \n", DATA_ERASE_ACCEPT_STRING); + printf("You must add the flag:\n\"%s\" \n", POSSIBLE_DATA_ERASE_ACCEPT_STRING); printf("to the command line arguments to run a repopulate elements operation.\n\n"); - printf("e.g.: %s -d %s --%s --confirm %s\n\n", util_name, deviceHandleExample, REPOPULATE_ELEMENTS_LONG_OPT_STRING, DATA_ERASE_ACCEPT_STRING); + printf("e.g.: %s -d %s --%s --confirm %s\n\n", util_name, deviceHandleExample, REPOPULATE_ELEMENTS_LONG_OPT_STRING, POSSIBLE_DATA_ERASE_ACCEPT_STRING); } } } From fde38d46442b222d51830979554828c308706269 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Wed, 1 Jun 2022 18:42:14 -0600 Subject: [PATCH 28/66] doc: Adding more EPC settings examples to openSeaChest_PowerControl Adding some examples for showing and changing EPC settings to openSeaChest_PowerControl. Signed-off-by: Tyler Erickson --- utils/C/openSeaChest/openSeaChest_PowerControl.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/utils/C/openSeaChest/openSeaChest_PowerControl.c b/utils/C/openSeaChest/openSeaChest_PowerControl.c index 7c41fb01..7bff36e6 100644 --- a/utils/C/openSeaChest/openSeaChest_PowerControl.c +++ b/utils/C/openSeaChest/openSeaChest_PowerControl.c @@ -35,7 +35,7 @@ // Global Variables // //////////////////////// const char *util_name = "openSeaChest_PowerControl"; -const char *buildVersion = "3.1.9"; +const char *buildVersion = "3.1.10"; //////////////////////////// // functions to declare // @@ -2633,6 +2633,11 @@ void utility_Usage(bool shortUsage) //example usage printf("\t%s --scan\n", util_name); printf("\t%s -d %s -i\n", util_name, deviceHandleExample); + printf("\t%s -d %s --%s\n", util_name, deviceHandleExample, SHOW_EPC_SETTINGS_LONG_OPT_STRING); + printf("\t%s -d %s --%s 5000\n", util_name, deviceHandleExample, IDLE_A_LONG_OPT_STRING); + printf("\t%s -d %s --%s disable\n", util_name, deviceHandleExample, IDLE_B_LONG_OPT_STRING); + printf("\t%s -d %s --%s standby_z\n", util_name, deviceHandleExample, TRANSITION_POWER_MODE_LONG_OPT_STRING); + printf("\t%s -d %s --%s 5000 --%s 30000 --%s enable --%s disable\n", util_name, deviceHandleExample, IDLE_A_LONG_OPT_STRING, STANDBY_Z_LONG_OPT_STRING, IDLE_B_LONG_OPT_STRING, IDLE_C_LONG_OPT_STRING); //return codes printf("\nReturn codes\n"); printf("============\n"); From a960d919046ace7c162b2e649952872144bbe4f0 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Wed, 1 Jun 2022 18:46:29 -0600 Subject: [PATCH 29/66] lib: Pulling in workaround for HpCISSS.sys driver in CSMI code Pulling in a workaround for HpCISSS.sys driver to work around a hang in the CSMI code. Not sure exactly the best way to resolve yet and need to identify and test a controller to fix this better. Signed-off-by: Tyler Erickson --- subprojects/opensea-transport | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 9bd32fe7..8dfa81a5 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 9bd32fe784b5869502ae5ea2164ecd8013735f1d +Subproject commit 8dfa81a5d7b2478d1abca0da13f4957852f757e9 From f6a195ee30d014d80c64e368c01a43e170e6638d Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Wed, 1 Jun 2022 22:35:03 -0600 Subject: [PATCH 30/66] feat: Initial work to add more warnings Initial work to turn on more compiler warnings and fix the errors they warn about. Signed-off-by: Tyler Erickson --- Make/gcc/Makefile | 16 +++++++------ meson.build | 24 ++++++++++++++++++- subprojects/opensea-common | 2 +- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- utils/C/openSeaChest/openSeaChest_NVMe.c | 2 +- .../openSeaChest_PassthroughTest.c | 6 +---- 7 files changed, 37 insertions(+), 17 deletions(-) diff --git a/Make/gcc/Makefile b/Make/gcc/Makefile index 9b882f22..2150d180 100644 --- a/Make/gcc/Makefile +++ b/Make/gcc/Makefile @@ -17,15 +17,17 @@ CC ?= gcc LIB_FILE_OUTPUT_DIR=lib STRIP ?= strip STRIPOPTS ?= -CFLAGS ?= -Wall -Wextra -c -std=gnu99 -ffunction-sections -fdata-sections +CFLAGS ?= -Wall -Wextra -c -std=gnu99 -Wcast-align=strict -Wshadow=compatible-local -Wvla -Wfloat-equal -Wnull-dereference -Wunused-const-variable \ + -Wduplicated-cond -Wjump-misses-init -Wstringop-overflow -Wlogical-op -Wshift-overflow=2 -Wsign-conversion -Wdouble-promotion -Wformat-security + CFLAGS_I686 ?= -Wall -Wextra -c -m32 LFLAGS ?= \ - -Wall -Wl,--gc-sections \ + -Wall \ ../../subprojects/opensea-operations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ ../../subprojects/opensea-transport/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-transport.a \ ../../subprojects/opensea-common/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-common.a TCGLFLAGS ?= \ - -Wall -Wl,--gc-sections \ + -Wall \ ../../subprojects/SeaCTCGOperations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libSeaCTCGOperations.a \ ../../subprojects/SeaCTCG/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libSeaCTCG.a \ ../../subprojects/opensea-operations/Make/gcc/$(LIB_FILE_OUTPUT_DIR)/libopensea-operations.a \ @@ -44,8 +46,8 @@ UNAME := $(shell uname -s) C_INCLUDE_PATH := /usr/include/ ifeq ($(UNAME),Linux) - LFLAGS += -lm -lrt - TCGLFLAGS += -lm -lrt + LFLAGS += -lm -lrt -Wl,--gc-sections + TCGLFLAGS += -lm -lrt -Wl,--gc-sections STRIPOPTS= -s CFLAGS += -ffunction-sections -fdata-sections endif @@ -55,8 +57,8 @@ ifeq ($(UNAME),SunOS) STRIPOPTS= endif ifeq ($(UNAME),FreeBSD) - LFLAGS += -lm -lcam - TCGLFLAGS += -lm -lcam + LFLAGS += -lm -lcam -Wl,--gc-sections + TCGLFLAGS += -lm -lcam -Wl,--gc-sections STRIPOPTS= -s CFLAGS += -ffunction-sections -fdata-sections endif diff --git a/meson.build b/meson.build index a2f25e2b..b38744a3 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,29 @@ -project('openSeaChest', 'c', license: 'MPL-2.0', version: '2.0.2') +project('openSeaChest', 'c', license: 'MPL-2.0', version: '2.0.2', default_options : ['warning_level=2']) c = meson.get_compiler('c') +#TODO: Add -Wcast-align=strict and fix these issues to help ensure better portability +#NOTE: -Wsign-conversion can be useful while debugging, but there are numerous places this shows up +# and it is not useful, so only add it while debugging. +warning_flags = [ +# '-Wcast-align=strict', +# '-Wsign-conversion', + '-Wshadow=compatible-local', + '-Wvla', + '-Wfloat-equal', + '-Wnull-dereference', + '-Wunused-const-variable', + '-Wduplicated-cond', + '-Wjump-misses-init', + '-Wstringop-overflow', + '-Wlogical-op', + '-Wshift-overflow=2', + '-Wdouble-promotion', + '-Wformat-security' +] + +add_project_arguments(c.get_supported_arguments(warning_flags), language : 'c') + if not (target_machine.system() == 'sunos') and (c.get_id() == 'gcc' or c.get_id() == 'clang') add_global_arguments( '-ffunction-sections', diff --git a/subprojects/opensea-common b/subprojects/opensea-common index 3a4e1a60..5623ce73 160000 --- a/subprojects/opensea-common +++ b/subprojects/opensea-common @@ -1 +1 @@ -Subproject commit 3a4e1a60f3754043abba0ca92607579bdbc51cc3 +Subproject commit 5623ce737179446e5e95c824b8dbee278125b6cc diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index f0e97d4b..cfb6118f 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit f0e97d4b84a303f16a32f1b5c0f83caf2f9c0ce6 +Subproject commit cfb6118f080f387494029eccda593001680abc2e diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 8dfa81a5..716332ed 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 8dfa81a5d7b2478d1abca0da13f4957852f757e9 +Subproject commit 716332ed58e23fa55e9dfa3013a7679bc5ae7f24 diff --git a/utils/C/openSeaChest/openSeaChest_NVMe.c b/utils/C/openSeaChest/openSeaChest_NVMe.c index 4ca6c246..2f2824e7 100644 --- a/utils/C/openSeaChest/openSeaChest_NVMe.c +++ b/utils/C/openSeaChest/openSeaChest_NVMe.c @@ -1261,7 +1261,7 @@ int32_t main(int argc, char *argv[]) * If it is not in between 1-3 we should exit with error */ - if ((TELEMETRY_DATA_AREA < 1) && (TELEMETRY_DATA_AREA > 3)) + if ((TELEMETRY_DATA_AREA < 1) || (TELEMETRY_DATA_AREA > 3)) { if (VERBOSITY_QUIET < toolVerbosity) { diff --git a/utils/C/openSeaChest/openSeaChest_PassthroughTest.c b/utils/C/openSeaChest/openSeaChest_PassthroughTest.c index 2002fd43..b36cf3e9 100644 --- a/utils/C/openSeaChest/openSeaChest_PassthroughTest.c +++ b/utils/C/openSeaChest/openSeaChest_PassthroughTest.c @@ -33,7 +33,7 @@ // Global Variables // //////////////////////// const char *util_name = "openSeaChest_PassthroughTest"; -const char *buildVersion = "1.1.3"; +const char *buildVersion = "1.1.4"; //////////////////////////// // functions to declare // @@ -4071,10 +4071,6 @@ int use_Mode_Sense_6(tDevice * device, uint8_t pageCode, bool *use6Byte) { return use_Mode_Sense_6(device, 0x01, use6Byte);//trying page 0x01 since any device type SHOULD have that page. For direct access block, it is the RW error recovery page } - else if (pageCode != 0x01) - { - return use_Mode_Sense_6(device, 0, use6Byte); - } else { ret = FAILURE;//command is not supported at all From 81c6c0f04ef74759e6b521cff205a71981422546 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 2 Jun 2022 19:05:43 -0600 Subject: [PATCH 31/66] make: Setting more warnings based on GCC version Setting more warnings based on the detected version of GCC. This is not currently done for Clang as even the old 3.4.2 version in CentOS7 supports the -Wno-unknown-warning-option flag which handles this for us. Signed-off-by: Tyler Erickson --- Make/gcc/Makefile | 65 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 63 insertions(+), 2 deletions(-) diff --git a/Make/gcc/Makefile b/Make/gcc/Makefile index 2150d180..f5ffff22 100644 --- a/Make/gcc/Makefile +++ b/Make/gcc/Makefile @@ -17,8 +17,8 @@ CC ?= gcc LIB_FILE_OUTPUT_DIR=lib STRIP ?= strip STRIPOPTS ?= -CFLAGS ?= -Wall -Wextra -c -std=gnu99 -Wcast-align=strict -Wshadow=compatible-local -Wvla -Wfloat-equal -Wnull-dereference -Wunused-const-variable \ - -Wduplicated-cond -Wjump-misses-init -Wstringop-overflow -Wlogical-op -Wshift-overflow=2 -Wsign-conversion -Wdouble-promotion -Wformat-security +#start with only -Wall and -Wextra. More warnings added below based on version of clang/gcc +CFLAGS ?= -Wall -Wextra -c -std=gnu99 CFLAGS_I686 ?= -Wall -Wextra -c -m32 LFLAGS ?= \ @@ -45,6 +45,67 @@ UNAME := $(shell uname -s) #If C_INCLUDE_PATH is not set, set it to /usr/include/ C_INCLUDE_PATH := /usr/include/ +#NOTE -Wsign-conversion can be useful but warns way too much by default. Only enable it if debugging specific problems +COMPILER_VERSION := $(shell $(CC) --version) +ifneq (,$(findstring clang,$(COMPILER_VERSION))) + #setup clang specific warnings/flags (centos 7's old version supports -Wno-unknown-warning-option so enabling all of them) + CFLAGS += -Wno-unknown-warning-option -Wcast-align=strict -Wvla -Wfloat-equal -Wnull-dereference -Wunused-const-variable \ + -Wduplicated-cond -Wjump-misses-init -Wstringop-overflow -Wlogical-op -Wshift-overflow=2 -Wdouble-promotion -Wformat-security +else + ifneq (,$(findstring GCC,$(COMPILER_VERSION))) + #setup gcc specific warnings/flags + GCC_VERSION_STRING = $(shell $(CC) -dumpversion) + GCC_VER = $(subst ., ,$(GCC_VERSION_STRING)) + GCC_MAJOR = $(word 1,$(GCC_VER)) + GCC_MINOR = $(word 2,$(GCC_VER)) + GCC_SUBMINOR = $(word 3,$(GCC_VER)) + ifeq ($(GCC_MINOR),) + GCC_MINOR = 0 + endif + ifeq ($(GCC_SUBMINOR),) + GCC_SUBMINOR = 0 + endif + #version 8.5 and higher + ifeq ($(shell test $(GCC_MAJOR) -gt 7; echo $$?),0) + ifeq ($(shell test $(GCC_MINOR) -gt 4; echo $$?),0) + CFLAGS += -Wcast-align=strict + else + CFLAGS += -Wcast-align + endif + else + CFLAGS += -Wcast-align + endif + #version 7.5 and higher + ifeq ($(shell test $(GCC_MAJOR) -gt 6; echo $$?),0) + ifeq ($(shell test $(GCC_MINOR) -gt 4; echo $$?),0) + CFLAGS += -Wshadow=compatible-local -Wstringop-overflow + else + CFLAGS += + endif + else + CFLAGS += + endif + #version 6.5 and higher + ifeq ($(shell test $(GCC_MAJOR) -gt 5; echo $$?),0) + ifeq ($(shell test $(GCC_MINOR) -gt 4; echo $$?),0) + CFLAGS += -Wnull-dereference -Wunused-const-variable -Wduplicated-cond -Wshift-overflow=2 + else + CFLAGS += + endif + else + CFLAGS += + endif + #version 5.5 and higher + ifeq ($(shell test $(GCC_MAJOR) -gt 4; echo $$?),0) + ifeq ($(shell test $(GCC_MINOR) -gt 4; echo $$?),0) + CFLAGS += -Wlogical-not-parentheses + endif + endif + + CFLAGS += -Wvla -Wfloat-equal -Wjump-misses-init -Wlogical-op -Wdouble-promotion -Wformat-security + endif +endif + ifeq ($(UNAME),Linux) LFLAGS += -lm -lrt -Wl,--gc-sections TCGLFLAGS += -lm -lrt -Wl,--gc-sections From 7e963a5296b1a2bf4d2ff1b73f67c1f1677042fd Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 2 Jun 2022 19:16:36 -0600 Subject: [PATCH 32/66] make: auto gnu99 mode for older gcc Automatically detecting GCC 5.5.x and older to set gnu99 mode. Older GCC defaulted to gnu89 which does not compile as this project needs some of C99 features to compile. This may need fine tuning in the future as I can only find the 5.5.0 docs online and not sure the exact version that the default C mode changed in. Signed-off-by: Tyler Erickson --- meson.build | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/meson.build b/meson.build index b38744a3..fe5b8a2c 100644 --- a/meson.build +++ b/meson.build @@ -34,6 +34,15 @@ if not (target_machine.system() == 'sunos') and (c.get_id() == 'gcc' or c.get_id '-Wl,--gc-sections', language: 'c', ) + #if GCC less than 5.5.x, need to set gnu99 standard (CentOS7, RH7, possibly others) + #TODO: May be able to move to c11/gnu11 instead, but will need to do a lot of testing first + if c.get_id().contains('gcc') + verStr = c.version().split('.') + if verStr.get(0).to_int() <= 5 or (verStr.get(0).to_int() == 5 and verStr.get(1).to_int() < 5) + add_global_arguments('-std=gnu99', language: 'c',) + endif + endif + endif if not get_option('tcg').enabled() From a9c480c1e0feb1c4b19b1eeb98f5c9f4fc9cf27e Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 2 Jun 2022 19:29:56 -0600 Subject: [PATCH 33/66] lib: Pulling in make warnings updates Pulling in additional warnings added to submodules Signed-off-by: Tyler Erickson --- subprojects/opensea-common | 2 +- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/subprojects/opensea-common b/subprojects/opensea-common index 5623ce73..1ccc99be 160000 --- a/subprojects/opensea-common +++ b/subprojects/opensea-common @@ -1 +1 @@ -Subproject commit 5623ce737179446e5e95c824b8dbee278125b6cc +Subproject commit 1ccc99be30327582fe0934b607131e0c5806c608 diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index cfb6118f..01735f94 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit cfb6118f080f387494029eccda593001680abc2e +Subproject commit 01735f946e127d4148eab5946622f604f6e6c664 diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 716332ed..9e938d5e 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 716332ed58e23fa55e9dfa3013a7679bc5ae7f24 +Subproject commit 9e938d5e78c24c98c460e5612b2ac6052e0a652b From 56759ebe4c9048a2bdf7d0135d808181994e487a Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 2 Jun 2022 23:06:25 -0600 Subject: [PATCH 34/66] make: Refining makefiles to set gnu99 for GCC 4.x and older only Refining the makefiles to set gnu99 standard only for GCC 4.x.x and older. As of 5.x.x, gnu11 is the default which would be better in the long term anyways. Signed-off-by: Tyler Erickson --- Make/gcc/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Make/gcc/Makefile b/Make/gcc/Makefile index f5ffff22..e94e6f2c 100644 --- a/Make/gcc/Makefile +++ b/Make/gcc/Makefile @@ -18,7 +18,7 @@ LIB_FILE_OUTPUT_DIR=lib STRIP ?= strip STRIPOPTS ?= #start with only -Wall and -Wextra. More warnings added below based on version of clang/gcc -CFLAGS ?= -Wall -Wextra -c -std=gnu99 +CFLAGS ?= -Wall -Wextra -c CFLAGS_I686 ?= -Wall -Wextra -c -m32 LFLAGS ?= \ @@ -100,6 +100,10 @@ else ifeq ($(shell test $(GCC_MINOR) -gt 4; echo $$?),0) CFLAGS += -Wlogical-not-parentheses endif + else + #GCC less that v 5.x.x needs to set gnu99 standard + #as of 5.x.x, gnu11 is default + CFLAGS += -std=gnu99 endif CFLAGS += -Wvla -Wfloat-equal -Wjump-misses-init -Wlogical-op -Wdouble-promotion -Wformat-security From 4c885ac02238fd337108e8e12b6c90189aa74892 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 2 Jun 2022 23:07:02 -0600 Subject: [PATCH 35/66] lib: Pulling in makefile gnu99 changes for 4.x.x only Signed-off-by: Tyler Erickson --- subprojects/opensea-common | 2 +- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/subprojects/opensea-common b/subprojects/opensea-common index 1ccc99be..b1e36136 160000 --- a/subprojects/opensea-common +++ b/subprojects/opensea-common @@ -1 +1 @@ -Subproject commit 1ccc99be30327582fe0934b607131e0c5806c608 +Subproject commit b1e36136cfcf70163ab5dc4effe12c14a00aebb4 diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 01735f94..546b52f2 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 01735f946e127d4148eab5946622f604f6e6c664 +Subproject commit 546b52f28c8e15ee210a7117017f55a72c16edf8 diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 9e938d5e..dee359c0 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 9e938d5e78c24c98c460e5612b2ac6052e0a652b +Subproject commit dee359c035347025d1ef9cc31b24c6e3448b62c7 From 3f331ec8cb19f3668c084ac1e1bf39c4299c5aa5 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 2 Jun 2022 23:10:30 -0600 Subject: [PATCH 36/66] make: refining setting gnu99 only on gcc 4.x.x and older in meson Setting gnu99 mode only for gcc 4.x.x and older. As of GCC5, gnu11 is the default which would be better to keep around for the future anyways. Signed-off-by: Tyler Erickson --- meson.build | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/meson.build b/meson.build index fe5b8a2c..8a141e34 100644 --- a/meson.build +++ b/meson.build @@ -34,12 +34,13 @@ if not (target_machine.system() == 'sunos') and (c.get_id() == 'gcc' or c.get_id '-Wl,--gc-sections', language: 'c', ) - #if GCC less than 5.5.x, need to set gnu99 standard (CentOS7, RH7, possibly others) + #if GCC less than 5, need to set -std=gnu99 at minimum. gnu11 became the default in 5, 17 default in 7 or 8. #TODO: May be able to move to c11/gnu11 instead, but will need to do a lot of testing first - if c.get_id().contains('gcc') + #skipping sunos since this was a compatibility issue that was reported earlier. May be able to find a better way to handle this in the future. + if not (target_machine.system() == 'sunos') and c.get_id().contains('gcc') verStr = c.version().split('.') - if verStr.get(0).to_int() <= 5 or (verStr.get(0).to_int() == 5 and verStr.get(1).to_int() < 5) - add_global_arguments('-std=gnu99', language: 'c',) + if verStr.get(0).to_int() < 5 + global_cpp_args += ['-std=gnu99'] endif endif From b5bbca1823e647992732f078b69398755b5071d5 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 2 Jun 2022 23:11:03 -0600 Subject: [PATCH 37/66] lib: pulling in meson gcc 4.x.x gnu99 changes Signed-off-by: Tyler Erickson --- subprojects/opensea-common | 2 +- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/subprojects/opensea-common b/subprojects/opensea-common index b1e36136..72410de5 160000 --- a/subprojects/opensea-common +++ b/subprojects/opensea-common @@ -1 +1 @@ -Subproject commit b1e36136cfcf70163ab5dc4effe12c14a00aebb4 +Subproject commit 72410de5b50c14517f7d6804598edc2edf6cad15 diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 546b52f2..da502205 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 546b52f28c8e15ee210a7117017f55a72c16edf8 +Subproject commit da5022050e8a149c9eeac1aeb6ba790dd84f05a7 diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index dee359c0..e8b92dd7 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit dee359c035347025d1ef9cc31b24c6e3448b62c7 +Subproject commit e8b92dd7345337143300006f81f2e475c4595e02 From cf7df45c04c39549f6011b41d619bae32f311e3b Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 2 Jun 2022 23:27:36 -0600 Subject: [PATCH 38/66] make: Fixing error setting global flag for gnu99 in gcc 4.x.x Fixing an error adding global flag for old GCC 4.x.x compilers to use gnu99 mode. Signed-off-by: Tyler Erickson --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 8a141e34..a09fd6a0 100644 --- a/meson.build +++ b/meson.build @@ -40,7 +40,7 @@ if not (target_machine.system() == 'sunos') and (c.get_id() == 'gcc' or c.get_id if not (target_machine.system() == 'sunos') and c.get_id().contains('gcc') verStr = c.version().split('.') if verStr.get(0).to_int() < 5 - global_cpp_args += ['-std=gnu99'] + add_global_arguments('-std=gnu99', language: 'c',) endif endif From 6f1998dbf3ce0d3308bf13908cc725346abd8baf Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Wed, 8 Jun 2022 11:10:09 -0600 Subject: [PATCH 39/66] lib: Pulling in uscsi warning fixes Pulling in some fixes from uscsi_helper found when testing compilation in omnios Signed-off-by: Tyler Erickson --- subprojects/opensea-transport | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index e8b92dd7..af551332 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit e8b92dd7345337143300006f81f2e475c4595e02 +Subproject commit af551332187be02e273a400de64e79510e1b2637 From f1c46a1691931f978d8a524814e5dfb1ec637895 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Sun, 12 Jun 2022 15:58:57 -0600 Subject: [PATCH 40/66] lib: Pulling in Seagate USB drive updates. Signed-off-by: Tyler Erickson --- subprojects/opensea-transport | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index af551332..9503aa11 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit af551332187be02e273a400de64e79510e1b2637 +Subproject commit 9503aa11fbd3e508eb3dfe8f970074ffcba28834 From a5830fa2cdcf78f08cf1a3c265a693f8068f2ca5 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Mon, 13 Jun 2022 10:43:56 -0600 Subject: [PATCH 41/66] bug: Fixing incorrect security protocol support detection Fixing a bug in openSeaChest_PassthroughTest that incorrectly found support for security protocol in. This is not actually possible and was due to setting up default rules for unknown devices to improve low-level compatibility. Signed-off-by: Tyler Erickson --- utils/C/openSeaChest/openSeaChest_PassthroughTest.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/utils/C/openSeaChest/openSeaChest_PassthroughTest.c b/utils/C/openSeaChest/openSeaChest_PassthroughTest.c index b36cf3e9..e299f721 100644 --- a/utils/C/openSeaChest/openSeaChest_PassthroughTest.c +++ b/utils/C/openSeaChest/openSeaChest_PassthroughTest.c @@ -33,7 +33,7 @@ // Global Variables // //////////////////////// const char *util_name = "openSeaChest_PassthroughTest"; -const char *buildVersion = "1.1.4"; +const char *buildVersion = "1.1.5"; //////////////////////////// // functions to declare // @@ -6199,6 +6199,7 @@ int other_SCSI_Cmd_Support(tDevice *device, ptrOtherSCSICmdSupport scsiCmds) uint8_t scsiDataBytes[512] = { 0 };//used by each command scsiStatus blah; + memset(&blah, 0, sizeof(scsiStatus)); if (SUCCESS == scsi_Test_Unit_Ready(device, &blah)) { scsiCmds->testUnitReady = true; @@ -7803,11 +7804,9 @@ int perform_Passthrough_Test(ptrPassthroughTestParams inputs) printf("Use the --%s option to force a retest of pass-through hacks already known.\n", "forceRetest"); return SUCCESS; } - if (inputs->forceRetest) - { - //Need to clear out the hacks or incorrect results may be found since they will be used while testing. - memset(&inputs->device->drive_info.passThroughHacks, 0, sizeof(passthroughHacks)); - } + //Need to clear out the hacks or incorrect results may be found since they will be used while testing. + memset(&inputs->device->drive_info.passThroughHacks, 0, sizeof(passthroughHacks)); + //2. Check what things the device reports for SCSI capabilities, SAT VPD page, etc. Emit warnings for pages that are missing that were expected printf("Checking standard SCSI inquiry data, VPD pages, and some mode pages\n"); printf("to understand device capabilities. Only commands specified in translator\n"); @@ -8335,6 +8334,7 @@ int perform_Passthrough_Test(ptrPassthroughTestParams inputs) #endif if (scsiInformation.vpdData.gotBlockLimitsVPDPage) { + //TODO:Check if we hit the maximum in our test: MAX_SCSI_SECTORS_TO_TEST if (inputs->device->drive_info.passThroughHacks.scsiHacks.maxTransferLength < (scsiInformation.vpdData.blockLimitsData.maximumXferLen * inputs->device->drive_info.deviceBlockSize)) { printf("%" PRIu8 "\tThe maximum transfer length is less than was reported by the block limits VPD page!\n", recommendationCounter); From fd839214cd9dfcecc41aaa0340976d5ed13dbcd0 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Mon, 13 Jun 2022 11:15:39 -0600 Subject: [PATCH 42/66] lib: Pulling in multiple new USB drives in the known devices list. Signed-off-by: Tyler Erickson --- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index da502205..6d3e7c93 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit da5022050e8a149c9eeac1aeb6ba790dd84f05a7 +Subproject commit 6d3e7c93f9d638e1915de35d79d0a4173ec55d55 diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 9503aa11..ca7a1abc 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 9503aa11fbd3e508eb3dfe8f970074ffcba28834 +Subproject commit ca7a1abc6226a21cba1a01db481f114df9256fa1 From 0dba70b3c51855f80e01a60aaae472899ed1fcc6 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 16 Jun 2022 17:20:47 -0600 Subject: [PATCH 43/66] clean: More warnings and fixing them Added -Wold-style-definition, -Wstrict-prototypes, -Wmissing-declarations, -Wmissing-prototypes warnings to help ensure better code. After turning these on, fixed all warnings as needed. In some cases, functions were made static, missing prototypes were added, and some code reorganization. Signed-off-by: Tyler Erickson --- include/openseachest_util_options.h | 2 +- meson.build | 6 +- src/EULA.c | 17 +-- src/openseachest_util_options.c | 2 +- subprojects/opensea-common | 2 +- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- .../openSeaChest_PassthroughTest.c | 104 +++++++++--------- 8 files changed, 69 insertions(+), 68 deletions(-) diff --git a/include/openseachest_util_options.h b/include/openseachest_util_options.h index 9fe75baa..2c6da983 100644 --- a/include/openseachest_util_options.h +++ b/include/openseachest_util_options.h @@ -1964,7 +1964,7 @@ extern "C" //----------------------------------------------------------------------------- void print_Bug_Report_Email(bool shortHelp); - void print_Elevated_Privileges_Text(); + void print_Elevated_Privileges_Text(void); //----------------------------------------------------------------------------- // diff --git a/meson.build b/meson.build index a09fd6a0..37e00e1b 100644 --- a/meson.build +++ b/meson.build @@ -19,7 +19,11 @@ warning_flags = [ '-Wlogical-op', '-Wshift-overflow=2', '-Wdouble-promotion', - '-Wformat-security' + '-Wformat-security', + '-Wold-style-definition', + '-Wstrict-prototypes', + '-Wmissing-declarations', + '-Wmissing-prototypes' ] add_project_arguments(c.get_supported_arguments(warning_flags), language : 'c') diff --git a/src/EULA.c b/src/EULA.c index 97568e41..932c24d5 100644 --- a/src/EULA.c +++ b/src/EULA.c @@ -405,7 +405,7 @@ void print_EULA_To_Screen(int showApacheLicense, int showZlibLicense) return; } -void print_Apache_2_0_License() +static void print_Apache_2_0_License(void) { printf("===========================================================================\n"); printf("mbedtls - An open source, portable, easy to use, readable and flexible SSL\n"); @@ -599,7 +599,7 @@ void print_Apache_2_0_License() return; } -void print_Zlib_License() +static void print_Zlib_License(void) { printf("zlib.h -- interface of the 'zlib' general purpose compression library version\n"); printf("1.2.8, April 28th, 2013\n\n"); @@ -630,7 +630,7 @@ void print_Zlib_License() } #if defined (_WIN32) -static void print_Win_Getopt_Licenses() +static void print_Win_Getopt_Licenses(void) { printf("===========================================================================\n"); printf("wingetopt - getopt library for Windows compilers\n\n"); @@ -692,7 +692,7 @@ static void print_Win_Getopt_Licenses() #endif//_WIN32 #if defined (__FreeBSD__) -static void print_FreeBSD_License() +static void print_FreeBSD_License(void) { printf("Copyright 1992 - 2019 The FreeBSD Project.\n\n"); printf("Redistribution and use in source and binary forms, with or without\n"); @@ -723,7 +723,7 @@ static void print_FreeBSD_License() #endif //__FreeBSD__ #if defined(__GLIBC__) -static void print_GNU_LGPL_License() +static void print_GNU_LGPL_License(void) { printf("===========================================================================\n"); printf("glibc (GNU libc)\n\n"); @@ -885,7 +885,7 @@ static void print_GNU_LGPL_License() #endif//__GLIBC__ #if (USING_MUSL_LIBC) -static void print_Musl_MIT_License() +static void print_Musl_MIT_License(void) { printf("===========================================================================\n"); printf("musl libc\n\n"); @@ -951,8 +951,3 @@ void print_Open_Source_Licenses(int showApacheLicense, int showZlibLicense) } return; } - - - - - diff --git a/src/openseachest_util_options.c b/src/openseachest_util_options.c index 45089ed5..0f4d798d 100644 --- a/src/openseachest_util_options.c +++ b/src/openseachest_util_options.c @@ -59,7 +59,7 @@ void print_Bug_Report_Email(bool shortHelp) } } -void print_Elevated_Privileges_Text() +void print_Elevated_Privileges_Text(void) { printf("WARNING: You must run with elevated privileges to communicate with devices in the system."); #if defined (_WIN32) diff --git a/subprojects/opensea-common b/subprojects/opensea-common index 72410de5..200f6fea 160000 --- a/subprojects/opensea-common +++ b/subprojects/opensea-common @@ -1 +1 @@ -Subproject commit 72410de5b50c14517f7d6804598edc2edf6cad15 +Subproject commit 200f6feabfc680d38883b6d1f058642086c5f5a1 diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 6d3e7c93..19ade1a1 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 6d3e7c93f9d638e1915de35d79d0a4173ec55d55 +Subproject commit 19ade1a13797c31f68a8d9f4512ed7f2ed9d6bee diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index ca7a1abc..491749df 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit ca7a1abc6226a21cba1a01db481f114df9256fa1 +Subproject commit 491749dfc9fc88bea34ab19fca0aa3c54f451a04 diff --git a/utils/C/openSeaChest/openSeaChest_PassthroughTest.c b/utils/C/openSeaChest/openSeaChest_PassthroughTest.c index e299f721..d35fac7e 100644 --- a/utils/C/openSeaChest/openSeaChest_PassthroughTest.c +++ b/utils/C/openSeaChest/openSeaChest_PassthroughTest.c @@ -86,7 +86,7 @@ int perform_Passthrough_Test(ptrPassthroughTestParams inputs); #define PT_DRIVE_HINT_LONG_OPT_STRING "ptDriveHint" #define PT_DRIVE_HINT_LONG_OPT { PT_DRIVE_HINT_LONG_OPT_STRING, required_argument, NULL, 0 } -void print_Drive_Type_Hint_Help(bool shortHelp) +static void print_Drive_Type_Hint_Help(bool shortHelp) { printf("\t--%s [ata | nvme]\n", PT_DRIVE_HINT_LONG_OPT_STRING); if (!shortHelp) @@ -104,7 +104,7 @@ void print_Drive_Type_Hint_Help(bool shortHelp) #define PT_PTTYPE_HINT_LONG_OPT_STRING "ptTypeHint" #define PT_PTTYPE_HINT_LONG_OPT { PT_PTTYPE_HINT_LONG_OPT_STRING, required_argument, NULL, 0 } -void print_Passthrough_Type_Hint_Help(bool shortHelp) +static void print_Passthrough_Type_Hint_Help(bool shortHelp) { printf("\t--%s [sat | legacyATA]\n", PT_PTTYPE_HINT_LONG_OPT_STRING); if (!shortHelp) @@ -128,7 +128,7 @@ void print_Passthrough_Type_Hint_Help(bool shortHelp) #define DISABLE_PT_TESTING_LONG_OPT_STRING "disablePassthroughTesting" #define DISABLE_PT_TESTING_LONG_OPT { DISABLE_PT_TESTING_LONG_OPT_STRING, no_argument, &DISABLE_PT_TESTING, 1 } -void print_Disable_PT_Testing_Help(bool shortHelp) +static void print_Disable_PT_Testing_Help(bool shortHelp) { printf("\t--%s\n", DISABLE_PT_TESTING_LONG_OPT_STRING); if (!shortHelp) @@ -143,7 +143,7 @@ void print_Disable_PT_Testing_Help(bool shortHelp) #define ENABLE_LEGACY_ATA_PT_TESTING_LONG_OPT_STRING "enableLegacyATAPTTest" #define ENABLE_LEGACY_ATA_PT_TESTING_LONG_OPT { ENABLE_LEGACY_ATA_PT_TESTING_LONG_OPT_STRING, no_argument, &ENABLE_LEGACY_ATA_PT_TESTING, 1 } -void print_Enable_Legacy_ATA_PT_Testing_Help(bool shortHelp) +static void print_Enable_Legacy_ATA_PT_Testing_Help(bool shortHelp) { printf("\t--%s\n", ENABLE_LEGACY_ATA_PT_TESTING_LONG_OPT_STRING); if (!shortHelp) @@ -172,7 +172,7 @@ void print_Enable_Legacy_ATA_PT_Testing_Help(bool shortHelp) #define ENABLE_HANG_COMMANDS_TEST_LONG_OPT_STRING "enableHangCmdsTest" #define ENABLE_HANG_COMMANDS_TEST_LONG_OPT { ENABLE_HANG_COMMANDS_TEST_LONG_OPT_STRING, required_argument, NULL, 0 } -void print_Enable_Hang_Commands_Test_Help(bool shortHelp) +static void print_Enable_Hang_Commands_Test_Help(bool shortHelp) { printf("\t--%s [all | zlr | sctgpl | rrTdir]\n", ENABLE_HANG_COMMANDS_TEST_LONG_OPT_STRING); if (!shortHelp) @@ -197,7 +197,7 @@ void print_Enable_Hang_Commands_Test_Help(bool shortHelp) #define FORCE_RETEST_LONG_OPT_STRING "forceRetest" #define FORCE_RETEST_LONG_OPT { FORCE_RETEST_LONG_OPT_STRING, no_argument, &FORCE_RETEST, 1 } -void print_Force_Retest_Help(bool shortHelp) +static void print_Force_Retest_Help(bool shortHelp) { printf("\t--%s\n", FORCE_RETEST_LONG_OPT_STRING); if (!shortHelp) @@ -209,7 +209,7 @@ void print_Force_Retest_Help(bool shortHelp) } } -void print_Run_Passthrough_Test_Help(bool shortHelp) +static void print_Run_Passthrough_Test_Help(bool shortHelp) { printf("\t--%s\n", RUN_PASSTHROUGH_TEST_LONG_OPT_STRING); if (!shortHelp) @@ -1053,7 +1053,7 @@ int32_t main(int argc, char *argv[]) exit(exitCode); } -int return_Response_Extend_Bit_Test(tDevice *device) +static int return_Response_Extend_Bit_Test(tDevice *device) { int ret = NOT_SUPPORTED; //Do additional command testing to check if the extend bit is reported correctly or not. @@ -1174,7 +1174,7 @@ int return_Response_Extend_Bit_Test(tDevice *device) return ret; } -void multi_Sector_PIO_Test_With_Logs(tDevice *device, bool gpl, uint8_t logAddress, uint32_t logSize) +static void multi_Sector_PIO_Test_With_Logs(tDevice *device, bool gpl, uint8_t logAddress, uint32_t logSize) { uint8_t *log = C_CAST(uint8_t*, calloc_aligned(logSize, sizeof(uint8_t), device->os_info.minimumAlignment)); if (log) @@ -1324,12 +1324,14 @@ void multi_Sector_PIO_Test_With_Logs(tDevice *device, bool gpl, uint8_t logAddre } } -void multi_Sector_PIO_Test_With_Read_Write(M_ATTR_UNUSED tDevice *device) -{ - return; -} +//TODO: Use this function to do a read and write test to compare results in different sectors. +// will only be needed if unable to use logs method below +// static void multi_Sector_PIO_Test_With_Read_Write(M_ATTR_UNUSED tDevice *device) +// { +// return; +// } -void multi_Sector_PIO_Test(tDevice *device, bool smartSupported, bool smartLoggingSupported) +static void multi_Sector_PIO_Test(tDevice *device, bool smartSupported, bool smartLoggingSupported) { printf("Checking multi-sector PIO command support\n"); bool foundMultiSectorLogPage = false; @@ -1502,7 +1504,7 @@ void multi_Sector_PIO_Test(tDevice *device, bool smartSupported, bool smartLoggi return; } -void sat_DMA_UDMA_Protocol_Test(tDevice *device, M_ATTR_UNUSED bool smartSupported, M_ATTR_UNUSED bool smartLoggingSupported) +static void sat_DMA_UDMA_Protocol_Test(tDevice *device, M_ATTR_UNUSED bool smartSupported, M_ATTR_UNUSED bool smartLoggingSupported) { //Attempt UDMA mode first uint64_t lba = 0; @@ -1569,7 +1571,7 @@ void sat_DMA_UDMA_Protocol_Test(tDevice *device, M_ATTR_UNUSED bool smartSupport return; } -void check_Condition_Bit_Test(tDevice *device, bool smartSupported, bool smartLoggingSupported) +static void check_Condition_Bit_Test(tDevice *device, bool smartSupported, bool smartLoggingSupported) { //Test check condition bit printf("Testing for check condition bit support on any command\n"); @@ -1690,7 +1692,7 @@ void check_Condition_Bit_Test(tDevice *device, bool smartSupported, bool smartLo } #include "sat_helper_func.h" -void return_Response_Info_Test(tDevice *device, M_ATTR_UNUSED bool smartSupported, M_ATTR_UNUSED bool smartLoggingSupported, bool testWithoutTDirAllowed) +static void return_Response_Info_Test(tDevice *device, M_ATTR_UNUSED bool smartSupported, M_ATTR_UNUSED bool smartLoggingSupported, bool testWithoutTDirAllowed) { printf("Testing for support of Return Response Info protocol\n"); //Test return response information - TODO: May need to try issuing some command before we do this test. @@ -1973,7 +1975,7 @@ typedef struct _scsiDevInfo }scsiDevInformation, *ptrScsiDevInformation; -void scsi_VPD_Pages(tDevice *device, ptrScsiDevInformation scsiDevInfo) +static void scsi_VPD_Pages(tDevice *device, ptrScsiDevInformation scsiDevInfo) { set_Console_Colors(true, HEADING_COLOR); printf("\n=========================\n"); @@ -3609,7 +3611,7 @@ void scsi_VPD_Pages(tDevice *device, ptrScsiDevInformation scsiDevInfo) } } -int scsi_Information(tDevice *device, ptrScsiDevInformation scsiDevInfo) +static int scsi_Information(tDevice *device, ptrScsiDevInformation scsiDevInfo) { set_Console_Colors(true, HEADING_COLOR); printf("\n====================\n"); @@ -3954,7 +3956,7 @@ int scsi_Information(tDevice *device, ptrScsiDevInformation scsiDevInfo) return SUCCESS; } -int scsi_Capacity_Information(tDevice *device, ptrScsiDevInformation scsiDevInfo) +static int scsi_Capacity_Information(tDevice *device, ptrScsiDevInformation scsiDevInfo) { //Read capacity. Start with 10, then do 16. Emit warnings when 16 doesn't work and the scsi versions is greater than SPC2 //If read capacity 10 comes back saying UINT32_MAX for capacity, warn that this mismatches the SCSI version reported. @@ -4026,7 +4028,7 @@ int scsi_Capacity_Information(tDevice *device, ptrScsiDevInformation scsiDevInfo return SUCCESS; } -int use_Mode_Sense_6(tDevice * device, uint8_t pageCode, bool *use6Byte) +static int use_Mode_Sense_6(tDevice * device, uint8_t pageCode, bool *use6Byte) { int ret = SUCCESS; if (!use6Byte) @@ -4085,7 +4087,7 @@ int use_Mode_Sense_6(tDevice * device, uint8_t pageCode, bool *use6Byte) return ret; } -int get_SCSI_Mode_Page_Data(tDevice * device, uint8_t pageCode, uint8_t subPageCode, bool sixByte, uint8_t **dataBuffer /*to allow for reallocation/resize if necessary to get the full page*/, uint32_t *dataBufferLength) +static int get_SCSI_Mode_Page_Data(tDevice * device, uint8_t pageCode, uint8_t subPageCode, bool sixByte, uint8_t **dataBuffer /*to allow for reallocation/resize if necessary to get the full page*/, uint32_t *dataBufferLength) { int ret = SUCCESS; memset(*dataBuffer, 0, *dataBufferLength); @@ -4217,7 +4219,7 @@ int get_SCSI_Mode_Page_Data(tDevice * device, uint8_t pageCode, uint8_t subPageC } //TODO: Validate or check for default, changable, and saved values? Only checking current right now - TJE -int scsi_Mode_Information(tDevice *device, ptrScsiDevInformation scsiDevInfo) +static int scsi_Mode_Information(tDevice *device, ptrScsiDevInformation scsiDevInfo) { bool successfullyReadAtLeastOnePage = false; bool use6Byte = false; @@ -4785,7 +4787,7 @@ int scsi_Mode_Information(tDevice *device, ptrScsiDevInformation scsiDevInfo) } //TODO: we can clean up the loops in each case to most likely a single loop somewhere, but will need to figure out a method to save the data fields we care about...-TJE -int scsi_Log_Information(tDevice *device, ptrScsiDevInformation scsiDevInfo) +static int scsi_Log_Information(tDevice *device, ptrScsiDevInformation scsiDevInfo) { set_Console_Colors(true, HEADING_COLOR); printf("\n==========================\n"); @@ -6018,7 +6020,7 @@ typedef struct _scsiRWSupport bool nonZeroSectorCountRequired; }scsiRWSupport, *ptrScsiRWSupport; -int scsi_Read_Check(tDevice *device, bool zeroLengthTransfers, ptrScsiRWSupport rwSupport, bool testZeroLengthTransfersToo) +static int scsi_Read_Check(tDevice *device, bool zeroLengthTransfers, ptrScsiRWSupport rwSupport, bool testZeroLengthTransfersToo) { if (!device || ! rwSupport) { @@ -6144,7 +6146,7 @@ typedef struct _otherSCSICmdSupport bool testUnitReady; }otherSCSICmdSupport, *ptrOtherSCSICmdSupport; -bool does_Sense_Data_Show_Invalid_OP(tDevice *device) +static bool does_Sense_Data_Show_Invalid_OP(tDevice *device) { bool invalidOperationCode = false; senseDataFields senseFields; @@ -6157,7 +6159,7 @@ bool does_Sense_Data_Show_Invalid_OP(tDevice *device) return invalidOperationCode; } -bool does_Sense_Data_Show_Invalid_Field_In_CDB(tDevice *device) +static bool does_Sense_Data_Show_Invalid_Field_In_CDB(tDevice *device) { bool invalidField = false; senseDataFields senseFields; @@ -6170,20 +6172,20 @@ bool does_Sense_Data_Show_Invalid_Field_In_CDB(tDevice *device) return invalidField; } -bool does_Sense_Data_Show_Invalid_Field_In_Parameter_List(tDevice *device) -{ - bool invalidField = false; - senseDataFields senseFields; - memset(&senseFields, 0, sizeof(senseDataFields)); - get_Sense_Data_Fields(device->drive_info.lastCommandSenseData, SPC3_SENSE_LEN, &senseFields); - if (senseFields.scsiStatusCodes.senseKey == SENSE_KEY_ILLEGAL_REQUEST && senseFields.scsiStatusCodes.asc == 0x26 && senseFields.scsiStatusCodes.ascq == 0x00) - { - invalidField = true; - } - return invalidField; -} - -int other_SCSI_Cmd_Support(tDevice *device, ptrOtherSCSICmdSupport scsiCmds) +// static bool does_Sense_Data_Show_Invalid_Field_In_Parameter_List(tDevice *device) +// { +// bool invalidField = false; +// senseDataFields senseFields; +// memset(&senseFields, 0, sizeof(senseDataFields)); +// get_Sense_Data_Fields(device->drive_info.lastCommandSenseData, SPC3_SENSE_LEN, &senseFields); +// if (senseFields.scsiStatusCodes.senseKey == SENSE_KEY_ILLEGAL_REQUEST && senseFields.scsiStatusCodes.asc == 0x26 && senseFields.scsiStatusCodes.ascq == 0x00) +// { +// invalidField = true; +// } +// return invalidField; +// } + +static int other_SCSI_Cmd_Support(tDevice *device, ptrOtherSCSICmdSupport scsiCmds) { if (!device || !scsiCmds) { @@ -6338,7 +6340,7 @@ int other_SCSI_Cmd_Support(tDevice *device, ptrOtherSCSICmdSupport scsiCmds) } #include -int scsi_Error_Handling_Test(tDevice *device, double *badCommandRelativeTimeToGood) +static int scsi_Error_Handling_Test(tDevice *device, double *badCommandRelativeTimeToGood) { if (!device) { @@ -6456,7 +6458,7 @@ int scsi_Error_Handling_Test(tDevice *device, double *badCommandRelativeTimeToGo return SUCCESS; } -int sct_GPL_Test(tDevice *device, bool smartSupported, bool gplSupported, bool sctSupported) +static int sct_GPL_Test(tDevice *device, bool smartSupported, bool gplSupported, bool sctSupported) { if (!device) { @@ -6534,7 +6536,7 @@ int sct_GPL_Test(tDevice *device, bool smartSupported, bool gplSupported, bool s return NOT_SUPPORTED; } -void setup_ATA_ID_Info(ptrPassthroughTestParams inputs, bool *smartSupported, bool *smartLoggingSupported, bool *sctSupported) +static void setup_ATA_ID_Info(ptrPassthroughTestParams inputs, bool *smartSupported, bool *smartLoggingSupported, bool *sctSupported) { uint8_t *identifyData = (uint8_t*)&inputs->device->drive_info.IdentifyData.ata.Word000; uint16_t *ident_word = (uint16_t*)&inputs->device->drive_info.IdentifyData.ata.Word000; @@ -6794,7 +6796,7 @@ void setup_ATA_ID_Info(ptrPassthroughTestParams inputs, bool *smartSupported, bo return; } -int sat_Test_Identify(tDevice *device, uint8_t *ptrData, uint32_t dataSize, uint8_t cdbSize) +static int sat_Test_Identify(tDevice *device, uint8_t *ptrData, uint32_t dataSize, uint8_t cdbSize) { int ret = UNKNOWN; ataPassthroughCommand identify; @@ -6866,7 +6868,7 @@ int sat_Test_Identify(tDevice *device, uint8_t *ptrData, uint32_t dataSize, uint return ret; } -int sat_Ext_Cmd_With_A1_When_Possible_Test(tDevice *device) +static int sat_Ext_Cmd_With_A1_When_Possible_Test(tDevice *device) { int ret = NOT_SUPPORTED; if (device->drive_info.ata_Options.generalPurposeLoggingSupported) @@ -6891,7 +6893,7 @@ int sat_Ext_Cmd_With_A1_When_Possible_Test(tDevice *device) return ret; } -bool test_SAT_Capabilities(ptrPassthroughTestParams inputs, ptrScsiDevInformation scsiInformation) +static bool test_SAT_Capabilities(ptrPassthroughTestParams inputs, ptrScsiDevInformation scsiInformation) { set_Console_Colors(true, HEADING_COLOR); printf("\n=====================================\n"); @@ -7260,7 +7262,7 @@ bool test_SAT_Capabilities(ptrPassthroughTestParams inputs, ptrScsiDevInformatio return satSupported; } -bool test_Legacy_ATA_Passthrough(ptrPassthroughTestParams inputs, ptrScsiDevInformation scsiInformation) +static bool test_Legacy_ATA_Passthrough(ptrPassthroughTestParams inputs, ptrScsiDevInformation scsiInformation) { bool legacyATAPassthroughSupported = false; set_Console_Colors(true, HEADING_COLOR); @@ -7406,7 +7408,7 @@ bool test_Legacy_ATA_Passthrough(ptrPassthroughTestParams inputs, ptrScsiDevInfo #define THIRTY_TWO_KB UINT32_C(32768) #define MAX_SCSI_SECTORS_TO_TEST UINT32_C(4096) -int scsi_Max_Transfer_Length_Test(tDevice *device, uint32_t reportedMax, uint32_t reportedOptimal) +static int scsi_Max_Transfer_Length_Test(tDevice *device, uint32_t reportedMax, uint32_t reportedOptimal) { uint32_t maxTestSizeBlocks = MAX_SCSI_SECTORS_TO_TEST; if (reportedMax > 0) @@ -7467,7 +7469,7 @@ int scsi_Max_Transfer_Length_Test(tDevice *device, uint32_t reportedMax, uint32_ } -int ata_PT_Read(tDevice *device, uint64_t lba, bool async, uint8_t *ptrData, uint32_t dataSize) +static int ata_PT_Read(tDevice *device, uint64_t lba, bool async, uint8_t *ptrData, uint32_t dataSize) { int ret = SUCCESS;//assume success uint16_t sectors = 0; @@ -7720,7 +7722,7 @@ int ata_PT_Read(tDevice *device, uint64_t lba, bool async, uint8_t *ptrData, uin } #define MAX_ATA_SECTORS_TO_TEST UINT32_C(4096) -int ata_Passthrough_Max_Transfer_Length_Test(tDevice *device, uint32_t scsiReportedMax, uint32_t scsiReportedOptimal) +static int ata_Passthrough_Max_Transfer_Length_Test(tDevice *device, uint32_t scsiReportedMax, uint32_t scsiReportedOptimal) { uint32_t maxTestSizeBlocks = MAX_ATA_SECTORS_TO_TEST; if (scsiReportedMax > 0) From 082cc62934584602091e97860aebcf81afd15529 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 16 Jun 2022 17:32:43 -0600 Subject: [PATCH 44/66] make: Turning on more warnings in the makefiles Turning on more warnings for C code in the makefiles to match meson. Signed-off-by: Tyler Erickson --- Make/gcc/Makefile | 6 ++++-- subprojects/opensea-common | 2 +- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Make/gcc/Makefile b/Make/gcc/Makefile index e94e6f2c..09a49f35 100644 --- a/Make/gcc/Makefile +++ b/Make/gcc/Makefile @@ -50,7 +50,8 @@ COMPILER_VERSION := $(shell $(CC) --version) ifneq (,$(findstring clang,$(COMPILER_VERSION))) #setup clang specific warnings/flags (centos 7's old version supports -Wno-unknown-warning-option so enabling all of them) CFLAGS += -Wno-unknown-warning-option -Wcast-align=strict -Wvla -Wfloat-equal -Wnull-dereference -Wunused-const-variable \ - -Wduplicated-cond -Wjump-misses-init -Wstringop-overflow -Wlogical-op -Wshift-overflow=2 -Wdouble-promotion -Wformat-security + -Wduplicated-cond -Wjump-misses-init -Wstringop-overflow -Wlogical-op -Wshift-overflow=2 -Wdouble-promotion -Wformat-security \ + -Wold-style-definition -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes else ifneq (,$(findstring GCC,$(COMPILER_VERSION))) #setup gcc specific warnings/flags @@ -106,7 +107,8 @@ else CFLAGS += -std=gnu99 endif - CFLAGS += -Wvla -Wfloat-equal -Wjump-misses-init -Wlogical-op -Wdouble-promotion -Wformat-security + CFLAGS += -Wvla -Wfloat-equal -Wjump-misses-init -Wlogical-op -Wdouble-promotion -Wformat-security \ + -Wold-style-definition -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes endif endif diff --git a/subprojects/opensea-common b/subprojects/opensea-common index 200f6fea..fb90c562 160000 --- a/subprojects/opensea-common +++ b/subprojects/opensea-common @@ -1 +1 @@ -Subproject commit 200f6feabfc680d38883b6d1f058642086c5f5a1 +Subproject commit fb90c56210216a434fef4003a9230bdd84294dee diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 19ade1a1..118606c4 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 19ade1a13797c31f68a8d9f4512ed7f2ed9d6bee +Subproject commit 118606c477d033cedca14da15057cbb295ba84d8 diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 491749df..7e19e5d1 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 491749dfc9fc88bea34ab19fca0aa3c54f451a04 +Subproject commit 7e19e5d119d2a78a99ecfba8e1d223409384e41a From 077a92262d379b143b1b9d21642b77073a2bc7a7 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Tue, 21 Jun 2022 21:01:47 -0600 Subject: [PATCH 45/66] lib: Pulling in opensea-transport update for fs detection Signed-off-by: Tyler Erickson --- subprojects/opensea-transport | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 7e19e5d1..d7fc8efc 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 7e19e5d119d2a78a99ecfba8e1d223409384e41a +Subproject commit d7fc8efccb12111eb2d64d9beeadc74b61b0f57e From e8fffd3c761b91bd1b14332aca1ebeeb251111a8 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 23 Jun 2022 20:00:50 -0600 Subject: [PATCH 46/66] doc: Updating copyright date to 2022 Updating the copyright date in the readme to 2022 Signed-off-by: Tyler Erickson --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 125f981f..89ae06bc 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ## Cross platform utilities useful for performing various operations on SATA, SAS, NVMe, and USB storage devices -### Copyright (c) 2014-2021 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +### Copyright (c) 2014-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved [![MSBuild](https://github.com/Seagate/openSeaChest/actions/workflows/msbuild.yml/badge.svg)](https://github.com/Seagate/openSeaChest/actions/workflows/msbuild.yml) [![CodeQL](https://github.com/Seagate/openSeaChest/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/Seagate/openSeaChest/actions/workflows/codeql-analysis.yml) @@ -264,7 +264,7 @@ The newest online version of the openSeaChest Utilities documentation, open source usage and acknowledgement licenses, and our Linux USB Boot Maker FAQ can be found at: [https://github.com/Seagate/openSeaChest](https://github.com/Seagate/openSeaChest). -Copyright (c) 2014-2021 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +Copyright (c) 2014-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved ### License From 907a05901a29c3ff0ec925570da3ed877de0dd76 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 23 Jun 2022 20:23:47 -0600 Subject: [PATCH 47/66] feat: Updating version numbers Updating version numbers for the projects in all builds files and header files as needed. Signed-off-by: Tyler Erickson --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 37e00e1b..18840e67 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,5 @@ -project('openSeaChest', 'c', license: 'MPL-2.0', version: '2.0.2', default_options : ['warning_level=2']) +project('openSeaChest', 'c', license: 'MPL-2.0', version: '22.6.23', default_options : ['warning_level=2']) +#note: project version is year.month.day c = meson.get_compiler('c') From 569b489de77a7e718b50702c191f0af163964b14 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 23 Jun 2022 20:30:17 -0600 Subject: [PATCH 48/66] quick: Cleaning up a few minor warnings in from mingw build with CSMI in Windows Cleaning a couple minor warnings that showed in mingw build Signed-off-by: Tyler Erickson --- src/openseachest_util_options.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/openseachest_util_options.c b/src/openseachest_util_options.c index 0f4d798d..9e35049f 100644 --- a/src/openseachest_util_options.c +++ b/src/openseachest_util_options.c @@ -41,13 +41,13 @@ const char *commandWindowType = "shell"; #endif #if defined (ENABLE_CSMI) -const char *csmiDeviceHandleName = ""; +//static const char *csmiDeviceHandleName = ""; #if defined (_WIN32) -const char *csmiDeviceHandleExample = "csmi\?:\?:?:?"; +static const char *csmiDeviceHandleExample = "csmi\?:\?:?:?"; #else -const char *csmiDeviceHandleExample = ""; -#endif -#endif +static const char *csmiDeviceHandleExample = ""; +#endif //_WIN32 +#endif //ENABLE_CSMI void print_Bug_Report_Email(bool shortHelp) { @@ -154,8 +154,8 @@ void openseachest_utility_Info(const char *utilityName, const char *buildVersion } printf(" Today: %s\tUser: %s\n", currentTime, userName); printf("==========================================================================================\n"); - safe_Free(userName); - safe_Free(year); + safe_Free(userName) + safe_Free(year) } void utility_Full_Version_Info(const char *utilityName, const char *buildVersion, int seaCPublicMajorVersion, int seaCPublicMinorVersion, int seaCPublicPatchVersion, const char * openseaCommonVersion, const char * openseaOperationVersion) @@ -2990,9 +2990,9 @@ void free_Handle_List(char ***handleList, uint32_t listCount) { for (uint32_t handleIter = 0; handleIter < listCount; ++handleIter) { - safe_Free((*handleList)[handleIter]); + safe_Free((*handleList)[handleIter]) } - safe_Free((*handleList)); + safe_Free((*handleList)) } } From 5f7412988707dc8a0a829182707ea95f77723bc2 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 23 Jun 2022 20:30:53 -0600 Subject: [PATCH 49/66] lib: Pulling in library updates to fix various warnings and update versions Signed-off-by: Tyler Erickson --- subprojects/opensea-common | 2 +- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/subprojects/opensea-common b/subprojects/opensea-common index fb90c562..ebc9e797 160000 --- a/subprojects/opensea-common +++ b/subprojects/opensea-common @@ -1 +1 @@ -Subproject commit fb90c56210216a434fef4003a9230bdd84294dee +Subproject commit ebc9e797ea9d3089d09304d786cb0cb15a95f87c diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 118606c4..99746f70 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 118606c477d033cedca14da15057cbb295ba84d8 +Subproject commit 99746f70316451487c0e11062227ea1d40963de5 diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index d7fc8efc..454b588e 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit d7fc8efccb12111eb2d64d9beeadc74b61b0f57e +Subproject commit 454b588ecb53dc40bc1a383916beaaa0d5e1b402 From 90995bbd6ab9f95b661636abc70fe2bf71c64b6c Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 23 Jun 2022 20:54:13 -0600 Subject: [PATCH 50/66] lib: mingw version check for devpropkeys Signed-off-by: Tyler Erickson --- subprojects/opensea-transport | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 454b588e..d665d862 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 454b588ecb53dc40bc1a383916beaaa0d5e1b402 +Subproject commit d665d862305be194ff6ccf2a981befd860a9fc10 From aabb8dd818154b7771f1379f2d6ba85a53e046a2 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 23 Jun 2022 21:26:15 -0600 Subject: [PATCH 51/66] make: mingw makefile cleanup to add -Wno-format and removing rename script Running mingw from Linux produces a massive number of warnings for no reason, so adding -Wno-format to hide these. I tried other workarounds and nothing worked. Removing the rename script as it is broken and does not run properly. Signed-off-by: Tyler Erickson --- Make/gccWin/Makefile.gccWin | 41 +++++++++++++++---------------------- 1 file changed, 16 insertions(+), 25 deletions(-) diff --git a/Make/gccWin/Makefile.gccWin b/Make/gccWin/Makefile.gccWin index f3356193..cd21ce3e 100644 --- a/Make/gccWin/Makefile.gccWin +++ b/Make/gccWin/Makefile.gccWin @@ -42,11 +42,10 @@ endif LIB_FILE_OUTPUT_DIR = lib #NOTE: If having excessive format warnings, add -Wnoformat to shut things up. We use -D__USE_MINGW_ANSI_STDIO below to work around this though - TJE -CFLAGS ?= -Wall -Wextra +CFLAGS ?= -Wall -Wextra -Wno-format CFLAGS += -c -std=gnu99 #BR note: is this necessary? CFLAGS += -isystem -CFLAGS_I686 = -Wall -Wextra -c -m32 LDFLAGS = -Wall LDLIBS = \ @@ -192,19 +191,11 @@ PROJECT_DEFINES += -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_ PROJECT_DEFINES += -DENABLE_CSMI PROJECT_DEFINES += -DDISABLE_TCG_SUPPORT -ifneq (,$(findstring Linux,$(MYUNAME))) - PROJECT_DEFINES += -DDISABLE_NVME_PASSTHROUGH -else - PROJECT_DEFINES += #-DDISABLE_NVME_PASSTHROUGH -endif ifneq (,$(findstring MINGW64,$(UNAME))) - #PROJECT_DEFINES += -D__MINGW64__ - # PROJECT_DEFINES += -D__MINGW32__ #BR note: trying different stuff during debugging #BR note: -D_WIN32_WINNT=0x0601 fixes unknown Windows version in winioctl.h # PROJECT_DEFINES += -D_WIN32_WINNT=0x0601 - # PROJECT_DEFINES += -DWINVER=SEA_WIN32_WINNT_WIN10 endif .PHONY: clean clean_all all @@ -315,7 +306,7 @@ ifneq (,$(findstring basics,$(BUILD_ALL))) $(BASICSOUTFILE): $(BASICSOBJS) opensea-libs mkoutputdir $(CC) $(BASICSOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(BASICSOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(BASICSOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(BASICSOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(BASICSOUTFILE) endif #security @@ -323,7 +314,7 @@ ifneq (,$(findstring security,$(BUILD_ALL))) $(SECURITYOUTFILE): $(SECURITYOBJS) opensea-libs mkoutputdir $(CC) $(SECURITYOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(SECURITYOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(SECURITYOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(SECURITYOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(SECURITYOUTFILE) endif @@ -332,7 +323,7 @@ ifneq (,$(findstring configure,$(BUILD_ALL))) $(CONFIGUREOUTFILE): $(CONFIGUREOBJS) opensea-libs mkoutputdir $(CC) $(CONFIGUREOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(CONFIGUREOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(CONFIGUREOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(CONFIGUREOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(CONFIGUREOUTFILE) endif #erase @@ -341,7 +332,7 @@ ifneq (,$(findstring erase,$(BUILD_ALL))) ifneq (,$(findstring DISABLE_TCG_SUPPORT,$(PROJECT_DEFINES))) $(CC) $(ERASEOBJS) $(PROJECT_DEFINES) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(ERASEOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(ERASEOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(ERASEOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(ERASEOUTFILE) else # $(CC) $(ERASEOBJS) $(TCGLFLAGS) -o $(FILE_OUTPUT_DIR)/$(ERASEOUTFILE) # $(STRIP) -s $(FILE_OUTPUT_DIR)/$(ERASEOUTFILE) @@ -353,7 +344,7 @@ ifneq (,$(findstring firmware,$(BUILD_ALL))) $(FIRMWAREOUTFILE): $(FIRMWAREOBJS) opensea-libs mkoutputdir $(CC) $(FIRMWAREOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(FIRMWAREOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(FIRMWAREOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(FIRMWAREOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(FIRMWAREOUTFILE) endif #format @@ -361,7 +352,7 @@ ifneq (,$(findstring format,$(BUILD_ALL))) $(FORMATOUTFILE): $(FORMATOBJS) opensea-libs mkoutputdir $(CC) $(FORMATOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(FORMATOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(FORMATOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(FORMATOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(FORMATOUTFILE) endif #generictests @@ -369,7 +360,7 @@ ifneq (,$(findstring generictests,$(BUILD_ALL))) $(GENERICTESTSOUTFILE) : $(GENERICTESTSOBJS) opensea-libs mkoutputdir $(CC) $(GENERICTESTSOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(GENERICTESTSOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(GENERICTESTSOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(GENERICTESTSOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(GENERICTESTSOUTFILE) endif #info @@ -377,7 +368,7 @@ ifneq (,$(findstring info,$(BUILD_ALL))) $(INFOOUTFILE): $(INFOOBJS) opensea-libs mkoutputdir $(CC) $(INFOOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(INFOOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(INFOOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(INFOOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(INFOOUTFILE) endif #logs @@ -385,7 +376,7 @@ ifneq (,$(findstring logs,$(BUILD_ALL))) $(LOGSOUTFILE): $(LOGSOBJS) opensea-libs mkoutputdir $(CC) $(LOGSOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(LOGSOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(LOGSOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(LOGSOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(LOGSOUTFILE) endif #nvme @@ -393,7 +384,7 @@ ifneq (,$(findstring nvme,$(BUILD_ALL))) $(NVMEOUTFILE): $(NVMEOBJS) opensea-libs mkoutputdir $(CC) $(NVMEOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(NVMEOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(NVMEOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(NVMEOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(NVMEOUTFILE) endif #powercontrol @@ -401,7 +392,7 @@ ifneq (,$(findstring powercontrol,$(BUILD_ALL))) $(POWERCONTROLOUTFILE) : $(POWERCONTROLOBJS) opensea-libs mkoutputdir $(CC) $(POWERCONTROLOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(POWERCONTROLOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(POWERCONTROLOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(POWERCONTROLOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(POWERCONTROLOUTFILE) endif #smart @@ -409,7 +400,7 @@ ifneq (,$(findstring smart,$(BUILD_ALL))) $(SMARTOUTFILE): $(SMARTOBJS) opensea-libs mkoutputdir $(CC) $(SMARTOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(SMARTOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(SMARTOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(SMARTOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(SMARTOUTFILE) endif #zbd @@ -417,7 +408,7 @@ ifneq (,$(findstring zbd,$(BUILD_ALL))) $(ZBDOUTFILE): $(ZBDOBJS) opensea-libs mkoutputdir $(CC) $(ZBDOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(ZBDOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(ZBDOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(ZBDOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(ZBDOUTFILE) endif #passthrough @@ -425,7 +416,7 @@ ifneq (,$(findstring passthrough,$(BUILD_ALL))) $(PASSTHROUGHTESTOUTFILE): $(PASSTHROUGHTESTOBJS) opensea-libs mkoutputdir $(CC) $(PASSTHROUGHTESTOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(PASSTHROUGHTESTOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(PASSTHROUGHTESTOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(PASSTHROUGHTESTOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(PASSTHROUGHTESTOUTFILE) endif #reservations @@ -433,7 +424,7 @@ ifneq (,$(findstring reservations,$(BUILD_ALL))) $(RESERVATIONSOUTFILE): $(RESERVATIONSOBJS) opensea-libs mkoutputdir $(CC) $(RESERVATIONSOBJS) $(LDFLAGS) $(LDLIBS) -o $(FILE_OUTPUT_DIR)/$(RESERVATIONSOUTFILE) $(STRIP) -s $(FILE_OUTPUT_DIR)/$(RESERVATIONSOUTFILE) - sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(RESERVATIONSOUTFILE) + #sh rename_seachest.sh $(FILE_OUTPUT_DIR)/$(RESERVATIONSOUTFILE) endif %.o: %.c From c9313075ca653c7aa09740f3bb5f021c876da92a Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 23 Jun 2022 21:28:54 -0600 Subject: [PATCH 52/66] lib: Pulling in library updates for mingw build under linux Signed-off-by: Tyler Erickson --- subprojects/opensea-common | 2 +- subprojects/opensea-transport | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/opensea-common b/subprojects/opensea-common index ebc9e797..dd6df06e 160000 --- a/subprojects/opensea-common +++ b/subprojects/opensea-common @@ -1 +1 @@ -Subproject commit ebc9e797ea9d3089d09304d786cb0cb15a95f87c +Subproject commit dd6df06eef7e8986e352c9351749a3f9d21d0443 diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index d665d862..5feb0e56 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit d665d862305be194ff6ccf2a981befd860a9fc10 +Subproject commit 5feb0e56210f741836326733038250c22f64eea2 From 7ff8074669683ced1ef6455a3104db6f944f7703 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 23 Jun 2022 22:18:35 -0600 Subject: [PATCH 53/66] lib: Pulling in more mingw makefile cleanup Signed-off-by: Tyler Erickson --- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 99746f70..43c0b01b 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 99746f70316451487c0e11062227ea1d40963de5 +Subproject commit 43c0b01bdece19a03502f82b1d1a04e045e5875c diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 5feb0e56..df9ac9cb 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 5feb0e56210f741836326733038250c22f64eea2 +Subproject commit df9ac9cb13afe8a4ccfe9597759ca01d48690d05 From d8387f8b84827dcc2c92b9e489b3ddf0807a8ee1 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Fri, 24 Jun 2022 16:34:35 -0600 Subject: [PATCH 54/66] doc: Fixing missing new line in some help Fixing missing new line in some help text. Signed-off-by: Tyler Erickson --- src/openseachest_util_options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openseachest_util_options.c b/src/openseachest_util_options.c index 9e35049f..e2f9f569 100644 --- a/src/openseachest_util_options.c +++ b/src/openseachest_util_options.c @@ -727,7 +727,7 @@ void print_SMART_Attributes_Help(bool shortHelp) printf("\t\t and firmware combinations are supported.\n"); printf("\t\t analyzed - a full breakdown of all parts of each individual\n"); printf("\t\t attribute's data. Full raw data interpretation only\n"); - printf("\t\t available on select devices."); + printf("\t\t available on select devices.\n"); printf("\t\tNOTE: Migration to device statistics is recommended.\n\n"); } } From dcfea115ec302ed58d79a6fd254ae38a7f4c07fd Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Fri, 24 Jun 2022 16:35:39 -0600 Subject: [PATCH 55/66] doc: Adding some examples for updating firmware Adding a few examples for how to update firmware to the openSeaChest_Firmware help. Signed-off-by: Tyler Erickson --- utils/C/openSeaChest/openSeaChest_Firmware.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/utils/C/openSeaChest/openSeaChest_Firmware.c b/utils/C/openSeaChest/openSeaChest_Firmware.c index 6e7d8037..97980941 100644 --- a/utils/C/openSeaChest/openSeaChest_Firmware.c +++ b/utils/C/openSeaChest/openSeaChest_Firmware.c @@ -33,7 +33,7 @@ // Global Variables // //////////////////////// const char *util_name = "openSeaChest_Firmware"; -const char *buildVersion = "3.1.3"; +const char *buildVersion = "3.1.4"; typedef enum _eSeaChestFirmwareExitCodes { @@ -1227,6 +1227,14 @@ void utility_Usage(bool shortUsage) //example usage printf("\t%s --scan\n", util_name); printf("\t%s -d %s -i\n", util_name, deviceHandleExample); + printf("\tUpdating firmware:\n"); + printf("\t%s -d %s --%s file.bin\n", util_name, deviceHandleExample, DOWNLOAD_FW_LONG_OPT_STRING); + printf("\tUpdating firmware with deferred download and activating:\n"); + printf("\t%s -d %s --%s file.bin --%s deferred --%s\n", util_name, deviceHandleExample, DOWNLOAD_FW_LONG_OPT_STRING, DOWNLOAD_FW_MODE_LONG_OPT_STRING, ACTIVATE_DEFERRED_FW_LONG_OPT_STRING); + printf("\tUpdating firmware and specifying a firmware slot (NVMe)\n"); + printf("\t%s -d %s --%s file.bin --%s deferred\n", util_name, deviceHandleExample, DOWNLOAD_FW_LONG_OPT_STRING, DOWNLOAD_FW_MODE_LONG_OPT_STRING); + printf("\t +\n"); + printf("\t%s -d %s --%s --%s 2\n", util_name, deviceHandleExample, ACTIVATE_DEFERRED_FW_LONG_OPT_STRING, FIRMWARE_SLOT_LONG_OPT_STRING); //return codes printf("\nReturn codes\n"); printf("============\n"); From 67f21c0ce98a924a0c002a38e6cde2a338f35645 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Fri, 24 Jun 2022 16:38:26 -0600 Subject: [PATCH 56/66] quick: Fixing minor documentation warnings Fixing minor documentation warnings Signed-off-by: Tyler Erickson --- include/EULA.h | 2 - include/openseachest_util_options.h | 127 ++++++++++++++-------------- 2 files changed, 63 insertions(+), 66 deletions(-) diff --git a/include/EULA.h b/include/EULA.h index 388ca345..2649cc61 100644 --- a/include/EULA.h +++ b/include/EULA.h @@ -31,7 +31,6 @@ extern "C" //! \param showZlibLicesne = set to non-zero value to print out the ZLib license (needed if using zlib/compression - fwdl config file) //! // Exit: - //! \return VOID // //----------------------------------------------------------------------------- void print_EULA_To_Screen(int showApacheLicense, int showZlibLicense); @@ -47,7 +46,6 @@ extern "C" //! \param showZlibLicesne = set to non-zero value to print out the ZLib license (needed if using zlib/compression - fwdl config file) //! // Exit: - //! \return VOID // //----------------------------------------------------------------------------- void print_Open_Source_Licenses(int showApacheLicense, int showZlibLicense); diff --git a/include/openseachest_util_options.h b/include/openseachest_util_options.h index 2c6da983..d107748d 100644 --- a/include/openseachest_util_options.h +++ b/include/openseachest_util_options.h @@ -1959,7 +1959,6 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID // //----------------------------------------------------------------------------- void print_Bug_Report_Email(bool shortHelp); @@ -1975,7 +1974,7 @@ extern "C" // Entry: //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Final_newline(void); @@ -1991,7 +1990,7 @@ extern "C" //! \param[in] deviceHandleExample = a string that is an example of the device handle (used so that help printed out matches what is expected for a particular OS //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Scan_Help(bool shortHelp, const char *helpdeviceHandleExample); @@ -2008,7 +2007,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Scan_Flags_Help(bool shortHelp); @@ -2024,7 +2023,7 @@ extern "C" //! \param[in] deviceHandleExample = a string that is an example of the device handle (used so that help printed out matches what is expected for a particular OS //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Device_Help(bool shortHelp, const char *helpdeviceHandleExample); @@ -2039,7 +2038,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Device_Information_Help(bool shortHelp); @@ -2054,7 +2053,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Verbose_Help(bool shortHelp); @@ -2070,7 +2069,7 @@ extern "C" //! \param[in] utilName = a string that is the name of the utility //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Quiet_Help(bool shortHelp, const char *utilName); @@ -2086,7 +2085,7 @@ extern "C" //! \param[in] utilName = a string that is the name of the utility //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Version_Help(bool shortHelp, const char *utilName); @@ -2101,7 +2100,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //--------------------------------------------]--------------------------------- void print_Confirm_Help(bool shortHelp); @@ -2116,7 +2115,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_License_Help(bool shortHelp); @@ -2131,7 +2130,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Echo_Command_Line_Help(bool shortHelp); @@ -2146,7 +2145,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Help_Help(bool shortHelp); @@ -2162,7 +2161,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_OutputPath_Help(bool shortHelp); @@ -2177,7 +2176,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Poll_Help(bool shortHelp); @@ -2193,7 +2192,7 @@ extern "C" //! \param[in] password = a string that is the password used by the utility for the erase. Typically this is the name of the utility //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_ATA_Security_Erase_Help(bool shortHelp, const char *password); @@ -2208,7 +2207,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Erase_Range_Help(bool shortHelp); @@ -2223,7 +2222,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Erase_Time_Help(bool shortHelp); @@ -2239,7 +2238,7 @@ extern "C" //! \param[in] utilName = a string that is the name of the utility //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Disable_ATA_Security_Password_Help(bool shortHelp, const char *utilName); @@ -2255,7 +2254,7 @@ extern "C" //! \param[in] utilName = a string that is the name of the utility //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Sanitize_Help(bool shortHelp, const char *utilName); @@ -2270,7 +2269,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Writesame_Help(bool shortHelp); @@ -2285,7 +2284,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Writesame_Range_Help(bool shortHelp); @@ -2300,7 +2299,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Revert_Help(bool shortHelp); @@ -2315,7 +2314,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_RevertSP_Help(bool shortHelp); @@ -2331,7 +2330,7 @@ extern "C" //! \param[in] testsTogetProgressFor = this is a string formatted as: "[test1 | test2 | ...]" that is a list of the operations that the utility supports getting progress for // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Progress_Help(bool shortHelp, char* testsTogetProgressFor); @@ -2355,7 +2354,7 @@ extern "C" //! \param toolName - name of the tool the exit codes are being printed for. Must be non-null. // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_SeaChest_Util_Exit_Codes(int numberOfToolSpecificExitCodes, ptrToolSpecificxitCode toolSpecificExitCodeList, const char * toolName); @@ -2370,7 +2369,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_SMART_Check_Help(bool shortHelp); @@ -2385,7 +2384,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Short_DST_Help(bool shortHelp); @@ -2401,7 +2400,7 @@ extern "C" //! \param[in] commandWindowType = string that represents the name of a command window type for the current OS // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Long_DST_Help(bool shortHelp, const char *helpcommandWindowType); @@ -2418,7 +2417,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_SMART_Attributes_Help(bool shortHelp); @@ -2433,7 +2432,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Abort_DST_Help(bool shortHelp); @@ -2449,7 +2448,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_IDD_Help(bool shortHelp); @@ -2464,7 +2463,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Check_Power_Mode_Help(bool shortHelp); @@ -2479,7 +2478,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Spindown_Help(bool shortHelp); @@ -2494,7 +2493,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_EnableDisableEPC_Help(bool shortHelp); @@ -2509,7 +2508,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Transition_Power_Help(bool shortHelp); @@ -2534,7 +2533,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Transition_Power_State_Help(bool shortHelp); @@ -2549,7 +2548,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Short_Generic_Help(bool shortHelp); @@ -2564,7 +2563,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_two_Minute_Test_Help(bool shortHelp); @@ -2579,7 +2578,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Long_Generic_Help(bool shortHelp); @@ -2594,7 +2593,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_User_Generic_Start_Help(bool shortHelp); @@ -2609,7 +2608,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_User_Generic_Range_Help(bool shortHelp); @@ -2624,7 +2623,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Error_Limit_Help(bool shortHelp); @@ -2639,7 +2638,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Stop_On_Error_Help(bool shortHelp); @@ -2654,7 +2653,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Repair_At_End_Help(bool shortHelp); @@ -2669,7 +2668,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Repair_On_Fly_Help(bool shortHelp); @@ -2684,7 +2683,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Time_Hours_Help(bool shortHelp); @@ -2699,7 +2698,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Time_Minutes_Help(bool shortHelp); @@ -2714,7 +2713,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Time_Seconds_Help(bool shortHelp); @@ -2729,7 +2728,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Random_Read_Test_Help(bool shortHelp); @@ -2744,7 +2743,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Butterfly_Read_Test_Help(bool shortHelp); @@ -2759,7 +2758,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Overwrite_Help(bool shortHelp); @@ -2774,7 +2773,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Overwrite_Range_Help(bool shortHelp); @@ -2789,7 +2788,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Trim_Unmap_Help(bool shortHelp); @@ -2804,7 +2803,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Trim_Unmap_Range_Help(bool shortHelp); @@ -2819,7 +2818,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Show_Power_Consumption_Help(bool shortHelp); @@ -2834,7 +2833,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Set_Power_Consumption_Help(bool shortHelp); @@ -2849,7 +2848,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help // // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Test_Unit_Ready_Help(bool shortHelp); @@ -3114,7 +3113,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Pull_Device_Statistics_Log_Help(bool shortHelp); @@ -3129,7 +3128,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Pull_Informational_Exceptions_Log_Help(bool shortHelp); @@ -3144,7 +3143,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Pull_Self_Test_Results_Log_Help(bool shortHelp); @@ -3159,7 +3158,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Pull_Identify_Device_Data_Log_Help(bool shortHelp); @@ -3174,7 +3173,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_Pull_SATA_Phy_Event_Counters_Log_Help(bool shortHelp); @@ -3189,7 +3188,7 @@ extern "C" //! \param[in] shortHelp = bool used to select when to print short or long help //! // Exit: - //! \return VOID + // //----------------------------------------------------------------------------- void print_FARM_Log_Help(bool shortHelp); From 1308834e43982c7940ee406d73ed8a83d57fbbfa Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Fri, 24 Jun 2022 16:38:43 -0600 Subject: [PATCH 57/66] lib: Pulling in fix for a missing break statement in device statistics Signed-off-by: Tyler Erickson --- subprojects/opensea-operations | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 43c0b01b..8b60b6ce 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 43c0b01bdece19a03502f82b1d1a04e045e5875c +Subproject commit 8b60b6cef8d28805161d3fcb3396ac15151be09a From c4a13561fb88d5980ca86eb07815092b378bf89d Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Fri, 24 Jun 2022 16:39:19 -0600 Subject: [PATCH 58/66] quick: Updating version number to today Signed-off-by: Tyler Erickson --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 18840e67..beb86e06 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('openSeaChest', 'c', license: 'MPL-2.0', version: '22.6.23', default_options : ['warning_level=2']) +project('openSeaChest', 'c', license: 'MPL-2.0', version: '22.6.24', default_options : ['warning_level=2']) #note: project version is year.month.day c = meson.get_compiler('c') From 1adb7cb9228f59aff6f68cc75a41dee6f6f62409 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Fri, 8 Jul 2022 11:37:31 -0600 Subject: [PATCH 59/66] lib: Pulling in CSMI fix Signed-off-by: Tyler Erickson --- subprojects/opensea-transport | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index df9ac9cb..2afccf37 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit df9ac9cb13afe8a4ccfe9597759ca01d48690d05 +Subproject commit 2afccf374a90b4c1f387a5c8d33a5bac5f2aba92 From 0f2531a2bc5f3912c525bbcf86734fbf2036ec19 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Mon, 11 Jul 2022 09:59:42 -0600 Subject: [PATCH 60/66] lib: Pulling in fixes for some different low-level library issues Signed-off-by: Tyler Erickson --- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 8b60b6ce..b9ce65c0 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 8b60b6cef8d28805161d3fcb3396ac15151be09a +Subproject commit b9ce65c0a46650c831db584f09b0075733f7dbe1 diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 2afccf37..25793457 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 2afccf374a90b4c1f387a5c8d33a5bac5f2aba92 +Subproject commit 25793457bb0cb7c4e4fff1d846ebd7b4895cc155 From f24c5ac73e42b4c07bf443c749142996ef6f72dc Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Wed, 13 Jul 2022 11:00:07 -0600 Subject: [PATCH 61/66] feat: Pulling in detection for power cycle required on firmware update Pulling in changes to support detecting when a power cycle is required to complete a firmware update. Signed-off-by: Tyler Erickson --- subprojects/opensea-common | 2 +- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- utils/C/openSeaChest/openSeaChest_Basics.c | 101 +++++++++++++------ utils/C/openSeaChest/openSeaChest_Firmware.c | 78 ++++++++------ utils/C/openSeaChest/openSeaChest_NVMe.c | 69 +++++++++---- 6 files changed, 174 insertions(+), 80 deletions(-) diff --git a/subprojects/opensea-common b/subprojects/opensea-common index dd6df06e..a2155bb5 160000 --- a/subprojects/opensea-common +++ b/subprojects/opensea-common @@ -1 +1 @@ -Subproject commit dd6df06eef7e8986e352c9351749a3f9d21d0443 +Subproject commit a2155bb5d1f45e50cc2e0158ed183d15e12de6bd diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index b9ce65c0..2122f415 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit b9ce65c0a46650c831db584f09b0075733f7dbe1 +Subproject commit 2122f4154de8071085ba8840099db818b44662d6 diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 25793457..aa129ba8 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 25793457bb0cb7c4e4fff1d846ebd7b4895cc155 +Subproject commit aa129ba8ea04df62bc4cba0dd88cc7b5dcb92da9 diff --git a/utils/C/openSeaChest/openSeaChest_Basics.c b/utils/C/openSeaChest/openSeaChest_Basics.c index 22450e3e..e15a0806 100644 --- a/utils/C/openSeaChest/openSeaChest_Basics.c +++ b/utils/C/openSeaChest/openSeaChest_Basics.c @@ -42,7 +42,7 @@ //////////////////////// const char *util_name = "openSeaChest_Basics"; -const char *buildVersion = "3.3.0"; +const char *buildVersion = "3.3.1"; //////////////////////////// // functions to declare // @@ -832,6 +832,7 @@ int32_t main(int argc, char *argv[]) || CHECK_POWER_FLAG || SPIN_DOWN_FLAG || DOWNLOAD_FW_FLAG + || ACTIVATE_DEFERRED_FW_FLAG || RESTORE_MAX_LBA_FLAG || SET_MAX_LBA_FLAG || SET_PHY_SPEED_FLAG @@ -1412,12 +1413,8 @@ int32_t main(int argc, char *argv[]) if (DOWNLOAD_FW_FLAG) { - FILE *firmwareFilePtr = NULL; + FILE* firmwareFilePtr = NULL; bool fileOpenedSuccessfully = true;//assume true in case of activate command - firmwareUpdateData dlOptions; - memset(&dlOptions, 0, sizeof(firmwareUpdateData)); - dlOptions.size = sizeof(firmwareUpdateData); - dlOptions.version = FIRMWARE_UPDATE_DATA_VERSION; if (DOWNLOAD_FW_MODE != DL_FW_ACTIVATE) { //open the file and send the download @@ -1433,20 +1430,19 @@ int32_t main(int argc, char *argv[]) } if (fileOpenedSuccessfully) { - size_t firmwareFileSize = C_CAST(size_t, get_File_Size(firmwareFilePtr)); - uint8_t *firmwareMem = C_CAST(uint8_t*, calloc_aligned(firmwareFileSize, sizeof(uint8_t), deviceList[deviceIter].os_info.minimumAlignment)); + size_t firmwareFileSize = get_File_Size(firmwareFilePtr); + uint8_t* firmwareMem = C_CAST(uint8_t*, calloc_aligned(firmwareFileSize, sizeof(uint8_t), deviceList[deviceIter].os_info.minimumAlignment)); if (firmwareMem) { supportedDLModes supportedFWDLModes; memset(&supportedFWDLModes, 0, sizeof(supportedDLModes)); - //set size and version before trying to read this information. supportedFWDLModes.size = sizeof(supportedDLModes); supportedFWDLModes.version = SUPPORTED_FWDL_MODES_VERSION; if (SUCCESS == get_Supported_FWDL_Modes(&deviceList[deviceIter], &supportedFWDLModes)) { if (!USER_SET_DOWNLOAD_MODE) { - //This line is commented out as we want to wait a little longer before letting deferred be a default when supported. + //This line is commented out since M and B want to wait a little longer before letting deferred be a default when supported. /* DOWNLOAD_FW_MODE = supportedFWDLModes.recommendedDownloadMode; /*/ @@ -1465,41 +1461,73 @@ int32_t main(int argc, char *argv[]) DOWNLOAD_FW_MODE = DL_FW_FULL; } } + //For now, setting deferred download as default for NVMe drives. + if (deviceList[deviceIter].drive_info.drive_type == NVME_DRIVE) + { + DOWNLOAD_FW_MODE = supportedFWDLModes.recommendedDownloadMode; + } //*/ } } - if(firmwareFileSize == fread(firmwareMem, sizeof(uint8_t), firmwareFileSize, firmwareFilePtr)) + if (firmwareFileSize == fread(firmwareMem, sizeof(uint8_t), firmwareFileSize, firmwareFilePtr)) { - + firmwareUpdateData dlOptions; + memset(&dlOptions, 0, sizeof(firmwareUpdateData)); + dlOptions.size = sizeof(firmwareUpdateData); + dlOptions.version = FIRMWARE_UPDATE_DATA_VERSION; dlOptions.dlMode = DOWNLOAD_FW_MODE; dlOptions.segmentSize = 0; - dlOptions.firmwareFileMem = firmwareMem; - dlOptions.firmwareMemoryLength = C_CAST(uint32_t, firmwareFileSize);//firmware files should never be larger than a few MBs for a LONG time... dlOptions.ignoreStatusOfFinalSegment = M_ToBool(FWDL_IGNORE_FINAL_SEGMENT_STATUS_FLAG); - switch (firmware_Download(&deviceList[deviceIter], &dlOptions) ) + dlOptions.firmwareFileMem = firmwareMem; + dlOptions.firmwareMemoryLength = C_CAST(uint32_t, firmwareFileSize);//firmware files shouldn't be larger than a few MBs for a LONG time + dlOptions.firmwareSlot = 0; + ret = firmware_Download(&deviceList[deviceIter], &dlOptions); + switch (ret) { case SUCCESS: + case POWER_CYCLE_REQUIRED: if (VERBOSITY_QUIET < toolVerbosity) { printf("Firmware Download successful\n"); - if (DOWNLOAD_FW_MODE == DL_FW_DEFERRED) + } + if (ret == POWER_CYCLE_REQUIRED) + { + printf("The Operating system has reported that a power cycle is required to complete the firmware update\n"); + } + if (DOWNLOAD_FW_MODE == DL_FW_DEFERRED) + { + if (VERBOSITY_QUIET < toolVerbosity) { printf("Firmware download complete. Reboot or run the --%s command to finish installing the firmware.\n", ACTIVATE_DEFERRED_FW_LONG_OPT_STRING); + if (deviceList[deviceIter].drive_info.numberOfLUs > 1) + { + printf("NOTE: This command may have affected more than 1 logical unit\n"); + } } - else if (supportedFWDLModes.seagateDeferredPowerCycleActivate && DOWNLOAD_FW_MODE == DL_FW_SEGMENTED) + } + else if (supportedFWDLModes.seagateDeferredPowerCycleActivate && DOWNLOAD_FW_MODE == DL_FW_SEGMENTED) + { + if (VERBOSITY_QUIET < toolVerbosity) { printf("This drive requires a full power cycle to activate the new code.\n"); } - else - { - fill_Drive_Info_Data(&deviceList[deviceIter]); - printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); - } if (deviceList[deviceIter].drive_info.numberOfLUs > 1) { printf("NOTE: This command may have affected more than 1 logical unit\n"); } } + else + { + fill_Drive_Info_Data(&deviceList[deviceIter]); + if (VERBOSITY_QUIET < toolVerbosity) + { + printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); + if (deviceList[deviceIter].drive_info.numberOfLUs > 1) + { + printf("NOTE: This command may have affected more than 1 logical unit\n"); + } + } + } break; case NOT_SUPPORTED: if (VERBOSITY_QUIET < toolVerbosity) @@ -1547,31 +1575,44 @@ int32_t main(int argc, char *argv[]) if (ACTIVATE_DEFERRED_FW_FLAG) { supportedDLModes supportedFWDLModes; - firmwareUpdateData dlOptions; - memset(&dlOptions, 0, sizeof(firmwareUpdateData)); memset(&supportedFWDLModes, 0, sizeof(supportedDLModes)); supportedFWDLModes.size = sizeof(supportedDLModes); supportedFWDLModes.version = SUPPORTED_FWDL_MODES_VERSION; - dlOptions.size = sizeof(firmwareUpdateData); - dlOptions.version = FIRMWARE_UPDATE_DATA_VERSION; get_Supported_FWDL_Modes(&deviceList[deviceIter], &supportedFWDLModes); if (supportedFWDLModes.deferred || supportedFWDLModes.scsiInfoPossiblyIncomplete) { + firmwareUpdateData dlOptions; memset(&dlOptions, 0, sizeof(firmwareUpdateData)); + dlOptions.size = sizeof(firmwareUpdateData); + dlOptions.version = FIRMWARE_UPDATE_DATA_VERSION; dlOptions.dlMode = DL_FW_ACTIVATE; dlOptions.segmentSize = 0; dlOptions.firmwareFileMem = NULL; dlOptions.firmwareMemoryLength = 0; + dlOptions.firmwareSlot = 0; dlOptions.ignoreStatusOfFinalSegment = false;//NOTE: This flag is not needed or used on products that support deferred download today. + if (DOWNLOAD_FW_FLAG) + { + //delay a second as this can help if running a download immediately followed by activate-TJE + delay_Seconds(1); + } ret = firmware_Download(&deviceList[deviceIter], &dlOptions); switch (ret) { case SUCCESS: + case POWER_CYCLE_REQUIRED: if (VERBOSITY_QUIET < toolVerbosity) { - printf("Firmware activate successful\n"); - fill_Drive_Info_Data(&deviceList[deviceIter]); - printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); + printf("Firmware activation successful\n"); + if (ret == POWER_CYCLE_REQUIRED) + { + printf("The Operating system has reported that a power cycle is required to complete the firmware update\n"); + } + else + { + fill_Drive_Info_Data(&deviceList[deviceIter]); + printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); + } if (deviceList[deviceIter].drive_info.numberOfLUs > 1) { printf("NOTE: This command may have affected more than 1 logical unit\n"); @@ -1588,7 +1629,7 @@ int32_t main(int argc, char *argv[]) default: if (VERBOSITY_QUIET < toolVerbosity) { - printf("Firmware activate failed\n"); + printf("Firmware activation failed\n"); } exitCode = UTIL_EXIT_OPERATION_FAILURE; break; diff --git a/utils/C/openSeaChest/openSeaChest_Firmware.c b/utils/C/openSeaChest/openSeaChest_Firmware.c index 97980941..32689a03 100644 --- a/utils/C/openSeaChest/openSeaChest_Firmware.c +++ b/utils/C/openSeaChest/openSeaChest_Firmware.c @@ -33,7 +33,7 @@ // Global Variables // //////////////////////// const char *util_name = "openSeaChest_Firmware"; -const char *buildVersion = "3.1.4"; +const char *buildVersion = "3.1.5"; typedef enum _eSeaChestFirmwareExitCodes { @@ -82,7 +82,7 @@ int32_t main(int argc, char *argv[]) LICENSE_VAR ECHO_COMMAND_LINE_VAR SCAN_FLAG_VAR - NO_BANNER_VAR + NO_BANNER_VAR AGRESSIVE_SCAN_FLAG_VAR SHOW_BANNER_VAR SHOW_HELP_VAR @@ -131,7 +131,7 @@ int32_t main(int argc, char *argv[]) SCAN_LONG_OPT, AGRESSIVE_SCAN_LONG_OPT, SCAN_FLAGS_LONG_OPT, - NO_BANNER_OPT, + NO_BANNER_OPT, VERSION_LONG_OPT, VERBOSE_LONG_OPT, QUIET_LONG_OPT, @@ -396,7 +396,7 @@ int32_t main(int argc, char *argv[]) if ((VERBOSITY_QUIET < toolVerbosity) && !NO_BANNER_FLAG) { - openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); + openseachest_utility_Info(util_name, buildVersion, OPENSEA_TRANSPORT_VERSION); } if (SHOW_BANNER_FLAG) @@ -637,13 +637,13 @@ int32_t main(int argc, char *argv[]) printf("Unable to get device list\n"); } if (!is_Running_Elevated()) - { - exit(UTIL_EXIT_NEED_ELEVATED_PRIVILEGES); - } - else - { - exit(UTIL_EXIT_OPERATION_FAILURE); - } + { + exit(UTIL_EXIT_NEED_ELEVATED_PRIVILEGES); + } + else + { + exit(UTIL_EXIT_OPERATION_FAILURE); + } } } } @@ -697,13 +697,13 @@ int32_t main(int argc, char *argv[]) } free_Handle_List(&HANDLE_LIST, DEVICE_LIST_COUNT); if(ret == PERMISSION_DENIED || !is_Running_Elevated()) - { - exit(UTIL_EXIT_NEED_ELEVATED_PRIVILEGES); - } - else - { - exit(UTIL_EXIT_OPERATION_FAILURE); - } + { + exit(UTIL_EXIT_NEED_ELEVATED_PRIVILEGES); + } + else + { + exit(UTIL_EXIT_OPERATION_FAILURE); + } } } } @@ -942,7 +942,7 @@ int32_t main(int argc, char *argv[]) { if (!USER_SET_DOWNLOAD_MODE) { - //This line is commented out since Muhammad and Billy want to wait a little longer before letting deferred be a default when supported. + //This line is commented out since M and B want to wait a little longer before letting deferred be a default when supported. /* DOWNLOAD_FW_MODE = supportedFWDLModes.recommendedDownloadMode; /*/ @@ -996,6 +996,7 @@ int32_t main(int argc, char *argv[]) switch (ret) { case SUCCESS: + case POWER_CYCLE_REQUIRED: exitCode = C_CAST(eUtilExitCodes, SEACHEST_FIRMWARE_EXIT_FIRMWARE_DOWNLOAD_COMPLETE); if (VERBOSITY_QUIET < toolVerbosity) { @@ -1010,6 +1011,10 @@ int32_t main(int argc, char *argv[]) print_Time(dlOptions.activateFWTime); } } + if (ret == POWER_CYCLE_REQUIRED) + { + printf("The Operating system has reported that a power cycle is required to complete the firmware update\n"); + } if (DOWNLOAD_FW_MODE == DL_FW_DEFERRED) { exitCode = C_CAST(eUtilExitCodes, SEACHEST_FIRMWARE_EXIT_DEFERRED_DOWNLOAD_COMPLETED); @@ -1130,33 +1135,46 @@ int32_t main(int argc, char *argv[]) dlOptions.existingFirmwareImage = true; } dlOptions.ignoreStatusOfFinalSegment = false;//NOTE: This flag is not needed or used on products that support deferred download today. + if (DOWNLOAD_FW_FLAG) + { + //delay a second as this can help if running a download immediately followed by activate-TJE + delay_Seconds(1); + } start_Timer(&commandTimer); ret = firmware_Download(&deviceList[deviceIter], &dlOptions); stop_Timer(&commandTimer); switch (ret) { case SUCCESS: + case POWER_CYCLE_REQUIRED: exitCode = C_CAST(eUtilExitCodes, SEACHEST_FIRMWARE_EXIT_DEFERRED_CODE_ACTIVATED); if (VERBOSITY_QUIET < toolVerbosity) { printf("Firmware activation successful\n"); - fill_Drive_Info_Data(&deviceList[deviceIter]); - if (NEW_FW_MATCH_FLAG) + if (ret == POWER_CYCLE_REQUIRED) + { + printf("The Operating system has reported that a power cycle is required to complete the firmware update\n"); + } + else { - if (strcmp(NEW_FW_STRING_FLAG, deviceList[deviceIter].drive_info.product_revision) == 0) + fill_Drive_Info_Data(&deviceList[deviceIter]); + if (NEW_FW_MATCH_FLAG) { - printf("Successfully validated firmware after download!\n"); - printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); + if (strcmp(NEW_FW_STRING_FLAG, deviceList[deviceIter].drive_info.product_revision) == 0) + { + printf("Successfully validated firmware after download!\n"); + printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); + } + else + { + printf("Unable to verify firmware after download!, expected %s, but found %s\n", NEW_FW_STRING_FLAG, deviceList[deviceIter].drive_info.product_revision); + } } else { - printf("Unable to verify firmware after download!, expected %s, but found %s\n", NEW_FW_STRING_FLAG, deviceList[deviceIter].drive_info.product_revision); + printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); } } - else - { - printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); - } if (deviceList[deviceIter].drive_info.numberOfLUs > 1) { printf("NOTE: This command may have affected more than 1 logical unit\n"); @@ -1306,7 +1324,7 @@ void utility_Usage(bool shortUsage) print_License_Help(shortUsage); print_Model_Match_Help(shortUsage); print_New_Firmware_Revision_Match_Help(shortUsage); - print_No_Banner_Help(shortUsage); + print_No_Banner_Help(shortUsage); print_Firmware_Revision_Match_Help(shortUsage); print_Only_Seagate_Help(shortUsage); print_Quiet_Help(shortUsage, util_name); diff --git a/utils/C/openSeaChest/openSeaChest_NVMe.c b/utils/C/openSeaChest/openSeaChest_NVMe.c index 2f2824e7..aa16d356 100644 --- a/utils/C/openSeaChest/openSeaChest_NVMe.c +++ b/utils/C/openSeaChest/openSeaChest_NVMe.c @@ -39,7 +39,7 @@ // Global Variables // //////////////////////// const char *util_name = "openSeaChest_NVMe"; -const char *buildVersion = "2.0.7"; +const char *buildVersion = "2.0.8"; //////////////////////////// // functions to declare // @@ -1580,7 +1580,7 @@ int32_t main(int argc, char *argv[]) if (DOWNLOAD_FW_FLAG) { - FILE *firmwareFilePtr = NULL; + FILE* firmwareFilePtr = NULL; bool fileOpenedSuccessfully = true;//assume true in case of activate command if (DOWNLOAD_FW_MODE != DL_FW_ACTIVATE) { @@ -1597,8 +1597,8 @@ int32_t main(int argc, char *argv[]) } if (fileOpenedSuccessfully) { - size_t firmwareFileSize = C_CAST(size_t, get_File_Size(firmwareFilePtr)); - uint8_t *firmwareMem = C_CAST(uint8_t*, calloc(firmwareFileSize, sizeof(uint8_t))); + size_t firmwareFileSize = get_File_Size(firmwareFilePtr); + uint8_t* firmwareMem = C_CAST(uint8_t*, calloc_aligned(firmwareFileSize, sizeof(uint8_t), deviceList[deviceIter].os_info.minimumAlignment)); if (firmwareMem) { supportedDLModes supportedFWDLModes; @@ -1609,8 +1609,7 @@ int32_t main(int argc, char *argv[]) { if (!USER_SET_DOWNLOAD_MODE) { - //This line is commented out since M and B want to wait a little longer before letting deferred be a default when supported. - //They said 6 months to a year from 8/30/16 - TJE + //This line is commented out since Muhammad and Billy want to wait a little longer before letting deferred be a default when supported. /* DOWNLOAD_FW_MODE = supportedFWDLModes.recommendedDownloadMode; /*/ @@ -1629,7 +1628,7 @@ int32_t main(int argc, char *argv[]) DOWNLOAD_FW_MODE = DL_FW_FULL; } } - //For now, setting deferred download as default for NVMe drives. + //For now, setting deferred download as default for NVMe drives. if (deviceList[deviceIter].drive_info.drive_type == NVME_DRIVE) { DOWNLOAD_FW_MODE = supportedFWDLModes.recommendedDownloadMode; @@ -1637,7 +1636,7 @@ int32_t main(int argc, char *argv[]) //*/ } } - if(firmwareFileSize == fread(firmwareMem, sizeof(uint8_t), firmwareFileSize, firmwareFilePtr)) + if (firmwareFileSize == fread(firmwareMem, sizeof(uint8_t), firmwareFileSize, firmwareFilePtr)) { firmwareUpdateData dlOptions; seatimer_t commandTimer; @@ -1654,6 +1653,7 @@ int32_t main(int argc, char *argv[]) { dlOptions.segmentSize = 0; } + dlOptions.ignoreStatusOfFinalSegment = false; dlOptions.firmwareFileMem = firmwareMem; dlOptions.firmwareMemoryLength = C_CAST(uint32_t, firmwareFileSize);//firmware files shouldn't be larger than a few MBs for a LONG time dlOptions.firmwareSlot = FIRMWARE_SLOT_FLAG; @@ -1663,6 +1663,7 @@ int32_t main(int argc, char *argv[]) switch (ret) { case SUCCESS: + case POWER_CYCLE_REQUIRED: if (VERBOSITY_QUIET < toolVerbosity) { printf("Firmware Download successful\n"); @@ -1676,11 +1677,19 @@ int32_t main(int argc, char *argv[]) print_Time(dlOptions.activateFWTime); } } + if (ret == POWER_CYCLE_REQUIRED) + { + printf("The Operating system has reported that a power cycle is required to complete the firmware update\n"); + } if (DOWNLOAD_FW_MODE == DL_FW_DEFERRED) { if (VERBOSITY_QUIET < toolVerbosity) { printf("Firmware download complete. Reboot or run the --%s command to finish installing the firmware.\n", ACTIVATE_DEFERRED_FW_LONG_OPT_STRING); + if (deviceList[deviceIter].drive_info.numberOfLUs > 1) + { + printf("NOTE: This command may have affected more than 1 logical unit\n"); + } } } else if (supportedFWDLModes.seagateDeferredPowerCycleActivate && DOWNLOAD_FW_MODE == DL_FW_SEGMENTED) @@ -1689,6 +1698,10 @@ int32_t main(int argc, char *argv[]) { printf("This drive requires a full power cycle to activate the new code.\n"); } + if (deviceList[deviceIter].drive_info.numberOfLUs > 1) + { + printf("NOTE: This command may have affected more than 1 logical unit\n"); + } } else { @@ -1711,6 +1724,10 @@ int32_t main(int argc, char *argv[]) { printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); } + if (deviceList[deviceIter].drive_info.numberOfLUs > 1) + { + printf("NOTE: This command may have affected more than 1 logical unit\n"); + } } } break; @@ -1738,7 +1755,7 @@ int32_t main(int argc, char *argv[]) } exitCode = UTIL_EXIT_OPERATION_FAILURE; } - safe_Free(firmwareMem); + safe_Free_aligned(firmwareMem) } else { @@ -1781,31 +1798,49 @@ int32_t main(int argc, char *argv[]) { dlOptions.existingFirmwareImage = true; } + dlOptions.ignoreStatusOfFinalSegment = false;//NOTE: This flag is not needed or used on products that support deferred download today. + if (DOWNLOAD_FW_FLAG) + { + //delay a second as this can help if running a download immediately followed by activate-TJE + delay_Seconds(1); + } start_Timer(&commandTimer); ret = firmware_Download(&deviceList[deviceIter], &dlOptions); stop_Timer(&commandTimer); switch (ret) { case SUCCESS: + case POWER_CYCLE_REQUIRED: if (VERBOSITY_QUIET < toolVerbosity) { printf("Firmware activation successful\n"); - fill_Drive_Info_Data(&deviceList[deviceIter]); - if (NEW_FW_MATCH_FLAG) + if (ret == POWER_CYCLE_REQUIRED) { - if (strcmp(NEW_FW_STRING_FLAG, deviceList[deviceIter].drive_info.product_revision) == 0) + printf("The Operating system has reported that a power cycle is required to complete the firmware update\n"); + } + else + { + fill_Drive_Info_Data(&deviceList[deviceIter]); + if (NEW_FW_MATCH_FLAG) { - printf("Successfully validated firmware after download!\n"); - printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); + if (strcmp(NEW_FW_STRING_FLAG, deviceList[deviceIter].drive_info.product_revision) == 0) + { + printf("Successfully validated firmware after download!\n"); + printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); + } + else + { + printf("Unable to verify firmware after download!, expected %s, but found %s\n", NEW_FW_STRING_FLAG, deviceList[deviceIter].drive_info.product_revision); + } } else { - printf("Unable to verify firmware after download!, expected %s, but found %s\n", NEW_FW_STRING_FLAG, deviceList[deviceIter].drive_info.product_revision); + printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); } } - else + if (deviceList[deviceIter].drive_info.numberOfLUs > 1) { - printf("New firmware version is %s\n", deviceList[deviceIter].drive_info.product_revision); + printf("NOTE: This command may have affected more than 1 logical unit\n"); } } break; From a7e709f9a411c54d00e3324b354d2a5cbe464ce0 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Tue, 19 Jul 2022 16:49:49 -0600 Subject: [PATCH 62/66] lib: Pulling in fix where extra padding was added to pulling ATA logs Pulling in a fix to stop padding zeroes to the end of some ATA log pulls Signed-off-by: Tyler Erickson --- subprojects/opensea-operations | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index 2122f415..f9eab78b 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit 2122f4154de8071085ba8840099db818b44662d6 +Subproject commit f9eab78b3cc349a74a1878b484ca27812506357b From 26f6e6490b774e72f8e72f441c8ce16693407747 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 21 Jul 2022 15:49:08 -0600 Subject: [PATCH 63/66] lib: Pulling in some cleanup of DrMemory warnings Pulling in some cleanup for DrMemory warnings while debugging another project. Signed-off-by: Tyler Erickson --- subprojects/opensea-transport | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index aa129ba8..178125fe 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit aa129ba8ea04df62bc4cba0dd88cc7b5dcb92da9 +Subproject commit 178125fed5e865972a52c2e39cc8764170439bdd From 77000856e250808905104a9d7ff9490931c62a11 Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 21 Jul 2022 16:15:37 -0600 Subject: [PATCH 64/66] Lib: Pulling in csmi update Signed-off-by: Tyler Erickson --- subprojects/opensea-transport | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index 178125fe..f09d599a 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit 178125fed5e865972a52c2e39cc8764170439bdd +Subproject commit f09d599a992e4e12e2537e9e5592c8bdf799dc0a From 295e83f42741ca39d3b5d771c88b916634873aaa Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Thu, 21 Jul 2022 16:52:00 -0600 Subject: [PATCH 65/66] doc: Updating man pages using help2man Updating man pages using the help2man tool. Some have been updated, others are freshly created. [Seagate/openSeaChest#88] Signed-off-by: Tyler Erickson --- docs/man/man8/openSeaChest_Basics.8 | 608 ++++++------- docs/man/man8/openSeaChest_Configure.8 | 771 +++++++---------- docs/man/man8/openSeaChest_Erase.8 | 650 ++++++-------- docs/man/man8/openSeaChest_Firmware.8 | 529 +++++------- docs/man/man8/openSeaChest_FormatUnit.8 | 608 +++++++++++++ docs/man/man8/openSeaChest_GenericTests.8 | 487 +++++------ docs/man/man8/openSeaChest_Info.8 | 467 ++++------ docs/man/man8/openSeaChest_Logs.8 | 596 +++++-------- docs/man/man8/openSeaChest_NVMe.8 | 479 +++++++++++ docs/man/man8/openSeaChest_PassthroughTest.8 | 312 +++++++ docs/man/man8/openSeaChest_PowerControl.8 | 860 ++++++++++--------- docs/man/man8/openSeaChest_SMART.8 | 559 ++++++------ docs/man/man8/openSeaChest_Security.8 | 377 ++++++++ docs/man/man8/openSeaChest_ZBD.8 | 288 +++++++ 14 files changed, 4502 insertions(+), 3089 deletions(-) create mode 100644 docs/man/man8/openSeaChest_FormatUnit.8 create mode 100644 docs/man/man8/openSeaChest_NVMe.8 create mode 100644 docs/man/man8/openSeaChest_PassthroughTest.8 create mode 100644 docs/man/man8/openSeaChest_Security.8 create mode 100644 docs/man/man8/openSeaChest_ZBD.8 diff --git a/docs/man/man8/openSeaChest_Basics.8 b/docs/man/man8/openSeaChest_Basics.8 index d0ac0a7d..650f78f1 100644 --- a/docs/man/man8/openSeaChest_Basics.8 +++ b/docs/man/man8/openSeaChest_Basics.8 @@ -1,49 +1,176 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4. -.\" Assuming you have the man tool installed, you can read this file directly with -.\" man ./openSeaChest_.8 -.\" System administration man pages are kept in the man8 folder. Use the manpath tool -.\" to determine the location of man pages on your system. Your favorite Linux system -.\" probably has man8 pages stored at: -.\" /usr/local/share/man/man8 -.\" or -.\" /usr/share/man/man8 -.\" -.\" If you want to use them then just copy to one of the above folders and they will -.\" be found. Just type: -.\" man openSeaChest_ -.ad l -.TH OPENSEACHEST_BASICS "8" "March 2019" "openSeaChest_Utilities" "System Administration Utilities" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_BASICS "1" "July 2022" "openSeaChest_Basics ==========================================================================================" "User Commands" .SH NAME -openSeaChest_Basics +openSeaChest_Basics \- manual page for openSeaChest_Basics ========================================================================================== .SH DESCRIPTION ========================================================================================== -.br -openSeaChest_Basics \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -openSeaChest_Basics Version: 2.8.0\-1_19_2 X86_64 -.br -Build Date: Feb 28 2019 -.br -========================================================================================== +.IP +openSeaChest_Basics \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Basics Version: 3.3.1\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:46:53 2022 User: tyler .PP +========================================================================================== Usage -.br ===== .IP openSeaChest_Basics [\-d ] {arguments} {options} .PP Examples -.br ======== .IP openSeaChest_Basics \fB\-\-scan\fR -.br openSeaChest_Basics \fB\-d\fR /dev/sg? \fB\-i\fR .PP +Return codes +============ +.IP +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error +.PP +Utility Options +=============== +.HP +\fB\-\-echoCommandLine\fR +.IP +Echo the command line entered into the utility on the screen. +.HP +\fB\-\-enableLegacyUSBPassthrough\fR +.IP +Only use this option on old USB or IEEE1394 (Firewire) +products that do not otherwise work with the tool. +This option will enable a trial and error method that +attempts sending various ATA Identify commands through +vendor specific means. Because of this, certain products +that may respond in unintended ways since they may interpret +these commands differently than the bridge chip the command +was designed for. +.HP +\fB\-\-forceATA\fR +.IP +Using this option will force the current drive to +be treated as a ATA drive. Only ATA commands will +be used to talk to the drive. +.TP +\fB\-\-forceATADMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to DMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAPIO\fR +(SATA Only) +.IP +Using this option will force the tool to issue PIO +commands to ATA device when possible. This option can +be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAUDMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to UDMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.HP +\fB\-\-forceSCSI\fR +.IP +Using this option will force the current drive to +be treated as a SCSI drive. Only SCSI commands will +be used to talk to the drive. +.HP +\fB\-h\fR, \fB\-\-help\fR +.IP +Show utility options and example usage (this output you see now) +Please report bugs/suggestions to seaboard@seagate.com. +Include the output of \fB\-\-version\fR information in the email. +.HP +\fB\-\-hideLBACounter\fR +.IP +Use this option to suppress the output from +options that show LBA counters without turning +off all output to the screen. +.HP +\fB\-\-hours\fR [hours] +.IP +Use this option to specify a time in hours +for a timed operation to run. +.HP +\fB\-\-license\fR +.IP +Display the Seagate End User License Agreement (EULA). +.HP +\fB\-\-modelMatch\fR [model Number] +.IP +Use this option to run on all drives matching the provided +model number. This option will provide a closest match although +an exact match is preferred. Ex: ST500 will match ST500LM0001 +.HP +\fB\-\-minutes\fR [minutes] +.IP +Use this option to specify a time in minutes +for a timed operation to run. +.HP +\fB\-\-onlyFW\fR [firmware revision] +.IP +Use this option to run on all drives matching the provided +firmware revision. This option will only do an exact match. +.HP +\fB\-\-noTimeLimit\fR +.IP +Use with utility command arguments which have a built in timeout +value. For example, \fB\-\-shortDST\fR has a 10 minute default +timeout. In some cases a good drive may need more time to +complete the test due to other legitimate system activity. +.HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP +\fB\-\-onlySeagate\fR +.IP +Use this option to match only Seagate drives for the options +provided +.HP +\fB\-q\fR, \fB\-\-quiet\fR +.IP +Run openSeaChest_Basics in quiet mode. This is the same as +\fB\-v\fR 0 or \fB\-\-verbose\fR 0 +.HP +\fB\-\-seconds\fR [seconds] +.IP +Use this option to specify a time in seconds +for a timed operation to run. +.HP +\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +.IP +Show verbose information. Verbosity levels are: +0 \- quiet +1 \- default +2 \- command descriptions +3 \- command descriptions and values +4 \- command descriptions, values, and data buffers +Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 +.HP +\fB\-V\fR, \fB\-\-version\fR +.IP +Show openSeaChest_Basics version and copyright information & exit +.PP Utility Arguments -.br ================= .HP \fB\-s\fR, \fB\-\-scan\fR @@ -53,34 +180,20 @@ Scan the system and list all storage devices with logical numbers. If your device is not listed on a scan immediately after booting, then wait 10 seconds and run it again. .HP -\fB\-d\fR, \fB\-\-device\fR deviceHandle -.IP -Use this option with most commands to specify the device -handle on which to perform an operation. Example: /dev/sg? -.HP -\fB\-i\fR, \fB\-\-deviceInfo\fR -.IP -Show information and features for the storage device -.HP \fB\-F\fR, \fB\-\-scanFlags\fR [option list] .IP Use this option to control the output from scan with the options listed below. Multiple options can be combined. -.br +.TP ata \- show only ATA (SATA) devices -.br usb \- show only USB devices -.br scsi \- show only SCSI (SAS) devices -.br +nvme \- show only NVMe devices interfaceATA \- show devices on an ATA interface -.br interfaceUSB \- show devices on a USB interface -.br interfaceSCSI \- show devices on a SCSI or SAS interface -.br +interfaceNVME = show devices on an NVMe interface sd \- show sd device handles -.br sgtosd \- show the sd and sg device handle mapping .HP \fB\-S\fR, \fB\-\-Scan\fR @@ -91,11 +204,19 @@ other devices. This low level rescan may wake devices from low power states and may cause the OS to re\-enumerate them. Use this option when a device is plugged in and not discovered in a normal scan. -.br NOTE: A low\-level rescan may not be available on all interfaces or all OSs. The low\-level rescan is not guaranteed to find additional devices in the system when the device is unable to come to a ready state. .HP +\fB\-d\fR, \fB\-\-device\fR deviceHandle +.IP +Use this option with most commands to specify the device +handle on which to perform an operation. Example: /dev/sg? +.HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP \fB\-\-SATInfo\fR .IP Displays SATA device information on any interface @@ -123,7 +244,7 @@ This option will read and display the contents of the specified LBA to the screen. The display format is hexadecimal with an ASCII translation on the side (when available). -.TP +.HP \fB\-\-activateFW\fR .IP Use this option to issue the command to activate code that was @@ -133,33 +254,50 @@ You can use this along with a \fB\-\-downloadFW\fR & \fB\-\-downloadMode\fR to automatically issue the activate command after the download has completed. .TP -\fB\-\-downloadFW\fR firmware_filename +WARNING: Firmware activation may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-downloadFW\fR [firmware_filename] .IP Download firmware to a Seagate storage product. Use only -Seagate authorized firmware data files which are designated for -the specific model drive. Improper use of this option may harm -a device and or its data. You may specify the path if the -firmware data file is in a different location. This option will -use segmented download by default. Use the +device manufacturer authorized firmware data files which are designated +for the specific model drive. Improper use of this option may +harm a device and or its data. You may specify the path (without +spaces) if the firmware data file is in a different location. +This option will use segmented download by default. Use the \fB\-\-downloadMode\fR option to specify a different download mode. .TP +WARNING: Firmware updates may affect all LUNs/namespaces +for devices with multiple logical units or namespaces. +.HP \fB\-\-downloadMode\fR [ full | segmented | deferred ] .IP Use this option along with the \fB\-\-downloadFW\fR option to set the firmware download mode. -.br Supported Modes: -.br +.TP full \- performs a download in one large transfer to the device. -.br +.TP segmented \- downloads the firmware in multiple segments to the device. (Most compatible) -.br +.TP deferred \- performs a segmented download to the device, but does not activate the new firmware until a powercycle or activate command is sent. +.TP +WARNING: Firmware Updates may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-showLockedRegions\fR +.IP +This option should only be used when performing firmware +updates on legacy products. What this does is it ignores +a failing error code from the OS on the final segment of a +firmware update, but this update is actually successful. +This is needed to workaround hardware or firmware limitations +that were present in some old products. .HP \fB\-\-shortDST\fR .IP @@ -168,14 +306,20 @@ up to 2 minutes to complete. Use the \fB\-\-poll\fR argument to make this operation poll for progress until complete. Use the \fB\-\-progress\fR dst command to check on the completion percentage (%) and test result. +NOTE: Short DST may take longer if there is other disk usage +while the DST is running. If the DST takes longer than 10 minutes +it will automatically be aborted while polling for progress. +To override this behavior, use the \fB\-\-noTimeLimit\fR option. .HP \fB\-\-poll\fR .IP Use this option to cause another operation to poll for progress until it has completed. This argument does not return to the command prompt and prints ongoing completion percentages (%) +.TP the final test result. Full drive procedures will take a +.TP very long time. Used with \fB\-\-sanitize\fR, or \fB\-\-writeSame\fR (SATA). .HP @@ -196,18 +340,17 @@ Use this option to change the PHY speed to a new maximum value. On SAS, this option will set all phys to the specified speed unless the \fB\-\-sasPhy\fR option is given to select a specific phy. -.br 0 \- allow full negotiation (default drive behavior) -.br 1 \- allow negotiation up to 1.5Gb/s -.br 2 \- allow negotiation up to 3.0Gb/s -.br 3 \- allow negotiation up to 6.0Gb/s -.br 4 \- allow negotiation up to 12.0Gb/s (SAS Only) -.br 5 \- allow negotiation up to 22.5Gb/s (SAS Only) +.IP +NOTE: SATA phy speed changes are only available on Seagate drives. +.TP +WARNING: Changing Phy speed may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP \fB\-\-readLookAhead\fR [info | enable | disable] .IP @@ -215,6 +358,15 @@ Use this option to enable or disable read look\-ahead support on a drive. Use the "info" argument to get the current status of the read look ahead feature. .TP +WARNING: Changing Read look\-ahead may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-restoreMaxLBA\fR +.IP +Restore the max accessible address of your drive to its native +size. A power cycle is required after this command before +setting a new max LBA. +.HP \fB\-\-setMaxLBA\fR newMaxLBA .IP Set the max accessible address of your drive to any value less @@ -222,12 +374,11 @@ than the device's default native size. A power cycle is required after this command before resetting or setting a new max LBA. .HP -\fB\-\-spinDown\fR +\fB\-\-showConcurrentRanges\fR .IP -Removes power to the disk drive motor with the Standby Immediate -command. Use this before moving a hard disk drive. The drive -will spin back up if the operating system selects the drive. -This means that an active drive will not stay spun down. +Use this option to display the concurrent positioning ranges +supported by a device. Concurrent positioning ranges are used +to inform which actuator is used for a given range in LBA space. .HP \fB\-\-smartCheck\fR .IP @@ -235,23 +386,28 @@ Perform a SMART check on a device to see if any internal thresholds have been tripped or if the drive is still operating within specification. .HP -\fB\-\-restoreMaxLBA\fR +\fB\-\-spinDown\fR .IP -Restore the max accessible address of your drive to its native -size. A power cycle is required after this command before -setting a new max LBA. +Removes power to the disk drive motor with the Standby Immediate +command. Use this before moving a hard disk drive. The drive +will spin back up if the operating system selects the drive. +This means that an active drive will not stay spun down. +.TP +WARNING: Spindown may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP \fB\-\-writeCache\fR [info | enable | disable] .IP Use this option to enable or disable write cache support on a drive. Use the "info" argument to get the current status of the write cache feature. -.P +.TP +WARNING: Changing Write Cache may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.IP SATA Only: -.br ========= -.br -\fB\-\-smartAttributes\fR [raw | analyzed] (SATA Only) +\fB\-\-smartAttributes\fR [raw | hybrid | analyzed] (SATA Only) .IP The drive will display its list of supported SMART attributes. Some attributes names are commonly standard and most others are @@ -261,28 +417,41 @@ used to determine a warranty return. Use the \fB\-\-smartCheck\fR command to determine if one of the warranty attributes has been tripped. Seagate Support does not help to analyze SMART attributes. -.P +Output modes: +.IP +raw \- All hex output for those that need every single bit. +hybrid \- classic table view with some interpretation of some +.TP +fields. Partial raw interpretation, but not all drive +and firmware combinations are supported. +.TP +analyzed \- a full breakdown of all parts of each individual +attribute's data. Full raw data interpretation only +available on select devices. +.IP +NOTE: Migration to device statistics is recommended. +.IP SAS Only: -.br ========= -.br -\fB\-\-readyLED\fR [info | on | off | default] (SAS Only) +\fB\-\-readyLED\fR [info | on | off | default] (SAS Only) .IP Use this option to get the current state or change the behavior of the ready LED. See the SPL spec for full details on how this changes LED -.br +.TP info \- gets the current state of the ready LED. -.br on \- sets the ready LED to usually off unless +.TP processing a command. -.br off \- sets the ready LED to usually on unless +.TP processing a command -.br default \- sets the ready LED to the drive's default value +.TP +WARNING: The EPC settings may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP -\fB\-\-sasPhy\fR [phy number] (SAS Only) +\fB\-\-sasPhy\fR [phy number] (SAS Only) .IP Use this option to specify a specific phy to use with another option that uses a phy identifier value. @@ -291,139 +460,8 @@ option is not present. Others will produce an error when a specific phy is needed for an operation. Use the \fB\-i\fR option to learn more about the supported phys. .PP -Utility Options -.br -=============== -.HP -\fB\-\-echoCommandLine\fR -.IP -Echo the command line entered into the utility on the screen. -.HP -\fB\-\-enableLegacyUSBPassthrough\fR -.IP -Only use this option on old USB or IEEE1394 (Firewire) -products that do not otherwise work with the tool. -This option will enable a trial and error method that -attempts sending various ATA Identify commands through -vendor specific means. Because of this, certain products -that may respond in unintended ways since they may interpret -these commands differently than the bridge chip the command -was designed for. -.HP -\fB\-\-forceATA\fR -.IP -Using this option will force the current drive to -be treated as a ATA drive. Only ATA commands will -be used to talk to the drive. -.TP -\fB\-\-forceATADMA\fR (SATA Only) -.IP -Using this option will force the tool to issue SAT -commands to ATA device using the protocol set to DMA -whenever possible (on DMA commands). -This option can be combined with \fB\-\-forceATA\fR -.TP -\fB\-\-forceATAPIO\fR (SATA Only) -.IP -Using this option will force the tool to issue PIO -commands to ATA device when possible. This option can -be combined with \fB\-\-forceATA\fR -.TP -\fB\-\-forceATAUDMA\fR (SATA Only) -.IP -Using this option will force the tool to issue SAT -commands to ATA device using the protocol set to UDMA -whenever possible (on DMA commands). -This option can be combined with \fB\-\-forceATA\fR -.HP -\fB\-\-forceSCSI\fR -.IP -Using this option will force the current drive to -be treated as a SCSI drive. Only SCSI commands will -be used to talk to the drive. -.HP -\fB\-h\fR, \fB\-\-help\fR -.IP -Show utility options and example usage (this output you see now) -Please report bugs/suggestions to seaboard@seagate.com. -Include the output of \fB\-\-version\fR information in the email. -.HP -\fB\-\-hideLBACounter\fR -.IP -Use this option to suppress the output from -options that show LBA counters without turning -off all output to the screen. -.HP -\fB\-\-hours\fR [hours] -.IP -Use this option to specify a time in hours -for a timed operation to run. -.HP -\fB\-\-license\fR -.IP -Display the Seagate End User License Agreement (EULA). -.HP -\fB\-\-modelMatch\fR [model Number] -.IP -Use this option to run on all drives matching the provided -model number. This option will provide a closest match although -an exact match is preferred. Ex: ST500 will match ST500LM0001 -.HP -\fB\-\-minutes\fR [minutes] -.IP -Use this option to specify a time in minutes -for a timed operation to run. -.HP -\fB\-\-onlyFW\fR [firmware revision] -.IP -Use this option to run on all drives matching the provided -firmware revision. This option will only do an exact match. -.HP -\fB\-\-onlySeagate\fR -.IP -Use this option to match only Seagate drives for the options -provided -.HP -\fB\-q\fR, \fB\-\-quiet\fR -.IP -Run openSeaChest_Basics in quiet mode. This is the same as -\fB\-v\fR 0 or \fB\-\-verbose\fR 0 -.HP -\fB\-\-sat12byte\fR -.IP -This forces the lower layer code to issue SAT spec -ATA Pass\-through 12 byte commands when possible instead -of 16 byte commands. By default, 16 byte commands are -always used for ATA Pass\-through. -.HP -\fB\-\-seconds\fR [seconds] -.IP -Use this option to specify a time in seconds -for a timed operation to run. -.HP -\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] -.IP -Show verbose information. Verbosity levels are: -.br -0 \- quiet -.br -1 \- default -.br -2 \- command descriptions -.br -3 \- command descriptions and values -.br -4 \- command descriptions, values, and data buffers -.br -Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 -.HP -\fB\-V\fR, \fB\-\-version\fR -.IP -Show openSeaChest_Basics version and copyright information & exit -.PP -Data Destructive Commands (Seagate only) -.br -======================================== +Data Destructive Commands +========================= .HP \fB\-\-overwrite\fR [starting LBA] .IP @@ -457,125 +495,37 @@ A range must also be provided with the range option. Use one of these options to specify a range to trim or unmap on a drive. A starting point must be specified with the \fB\-\-trim\fR/\-\-unmap option. -.PP -Return codes -.br -============ -.br -Generic/Common exit codes .IP -0 = No Error Found -.br -1 = Error in command line options -.br -2 = Invalid Device Handle or Missing Device Handle -.br -3 = Operation Failure -.br -4 = Operation not supported -.br -5 = Operation Aborted -.br -6 = File Path Not Found -.br -7 = Cannot Open File -.br -8 = File Already Exists -.br -Anything else = unknown error -.PP +openSeaChest_Basics \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Basics Version: 3.3.1\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:46:53 2022 User: tyler .PP -.br ========================================================================================== -.br -openSeaChest_Basics \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -openSeaChest_Basics Version: 2.8.0\-1_19_2 X86_64 -.br -Build Date: Feb 28 2019 -.br -========================================================================================== -.br Version Info for openSeaChest_Basics: .IP -Utility Version: 2.8.0 -.br -opensea\-common Version: 1.18.0 -.br -opensea\-transport Version: 1.19.2 -.br -opensea\-operations Version: 1.23.0 -.br -Build Date: Feb 28 2019 -.br +Utility Version: 3.3.1 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 Compiled Architecture: X86_64 -.br Detected Endianness: Little Endian -.br Compiler Used: GCC -.br -Compiler Version: 4.4.7 -.br +Compiler Version: 11.2.0 Operating System Type: Linux -.br -Operating System Version: 4.14.10\-0 -.br -Operating System Name: TinyCoreLinux 9.0 -.br -Edition: JBOD, NVMe -.br -RAID Support: none - -.SH "REPORTING BUGS" -Please report bugs/suggestions to seaboard at seagate dot com. Include the output of -\fB\-\--version\fR information in the email. See the user guide section 'General Usage -Hints' for information about saving output to a log file. - -.SH COPYRIGHT -Copyright \(co 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -BINARIES and SOURCE CODE files of the openSeaChest open source project have -been made available to you under the Mozilla Public License 2.0 (MPL). Mozilla -is the custodian of the Mozilla Public License ("MPL"), an open source/free -software license. -.br -https://www.mozilla.org/en-US/MPL/ -.br -You -can run -the command option \fB\-\--license\fR to display the agreement and acknowledgements of various open -source tools and projects used with SeaChest Utilities. -.PP -This software uses open source packages obtained with permission from the -relevant parties. For a complete list of open source components, sources and -licenses, please see our Linux USB Boot Maker Utility FAQ for additional -information. -.PP -SeaChest Utilities use libraries from the opensea source code projects. These -projects are maintained at http://github.com/seagate. -The libraries in use are opensea-common, opensea-transport and -opensea-operations. These libraries are available under the Mozilla Public -License 2.0. - - -.SH WEB SITE -There are web pages discussing this software at -.br -https://github.com/Seagate/openSeaChest +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS .SH "SEE ALSO" -.B openSeaChest_Basics, openSeaChest_Configure, openSeaChest_Erase, openSeaChest_Firmware, openSeaChest_Format, openSeaChest_GenericTests, openSeaChest_Info, openSeaChest_Logs, openSeaChest_PowerControl, openSeaChest_SMART - -The full documentation and version history for +The full documentation for .B openSeaChest_Basics -is maintained as a simple text file with this name: -.br -.B openSeaChest_Basics..txt -The number part of the name will change with each revision. -.br -The command -.IP -.B less /openSeaChest_Basics..txt +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_Basics +programs are properly installed at your site, the command +.IP +.B info openSeaChest_Basics .PP should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_Configure.8 b/docs/man/man8/openSeaChest_Configure.8 index f0d8a5f8..6c86344e 100644 --- a/docs/man/man8/openSeaChest_Configure.8 +++ b/docs/man/man8/openSeaChest_Configure.8 @@ -1,86 +1,182 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4. -.\" Assuming you have the man tool installed, you can read this file directly with -.\" man ./openSeaChest_.8 -.\" System administration man pages are kept in the man8 folder. Use the manpath tool -.\" to determine the location of man pages on your system. Your favorite Linux system -.\" probably has man8 pages stored at: -.\" /usr/local/share/man/man8 -.\" or -.\" /usr/share/man/man8 -.\" -.\" If you want to use them then just copy to one of the above folders and they will -.\" be found. Just type: -.\" man openSeaChest_ -.ad l -.TH OPENSEACHEST_CONFIGURE "8" "March 2019" "openSeaChest_Utilities" "System Administration Utilities" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_CONFIGURE "1" "July 2022" "openSeaChest_Configure ==========================================================================================" "User Commands" .SH NAME -openSeaChest_Configure +openSeaChest_Configure \- manual page for openSeaChest_Configure ========================================================================================== .SH DESCRIPTION ========================================================================================== -.br -openSeaChest_Configure \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -openSeaChest_Configure Version: 1.16.0\-1_19_2 X86_64 -.br -========================================================================================== +.IP +openSeaChest_Configure \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Configure Version: 2.1.0\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:47:10 2022 User: tyler .PP +========================================================================================== Usage -.br ===== .IP openSeaChest_Configure [\-d ] {arguments} {options} .PP Examples -.br ======== .IP openSeaChest_Configure \fB\-\-scan\fR -.br openSeaChest_Configure \fB\-d\fR /dev/sg? \fB\-i\fR .PP -Utility Arguments -.br -================= +Return codes +============ +.IP +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error +.PP +Utility Options +=============== .HP -\fB\-s\fR, \fB\-\-scan\fR +\fB\-\-echoCommandLine\fR .IP -Scan the system and list all storage devices with logical -/dev/sg? assignments. Shows model, serial and firmware -numbers. If your device is not listed on a scan immediately -after booting, then wait 10 seconds and run it again. +Echo the command line entered into the utility on the screen. +.HP +\fB\-\-enableLegacyUSBPassthrough\fR +.IP +Only use this option on old USB or IEEE1394 (Firewire) +products that do not otherwise work with the tool. +This option will enable a trial and error method that +attempts sending various ATA Identify commands through +vendor specific means. Because of this, certain products +that may respond in unintended ways since they may interpret +these commands differently than the bridge chip the command +was designed for. +.HP +\fB\-\-forceATA\fR +.IP +Using this option will force the current drive to +be treated as a ATA drive. Only ATA commands will +be used to talk to the drive. +.TP +\fB\-\-forceATADMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to DMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAPIO\fR +(SATA Only) +.IP +Using this option will force the tool to issue PIO +commands to ATA device when possible. This option can +be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAUDMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to UDMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.HP +\fB\-\-forceSCSI\fR +.IP +Using this option will force the current drive to +be treated as a SCSI drive. Only SCSI commands will +be used to talk to the drive. +.HP +\fB\-h\fR, \fB\-\-help\fR +.IP +Show utility options and example usage (this output you see now) +Please report bugs/suggestions to seaboard@seagate.com. +Include the output of \fB\-\-version\fR information in the email. +.HP +\fB\-\-license\fR +.IP +Display the Seagate End User License Agreement (EULA). +.HP +\fB\-\-modelMatch\fR [model Number] +.IP +Use this option to run on all drives matching the provided +model number. This option will provide a closest match although +an exact match is preferred. Ex: ST500 will match ST500LM0001 +.HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP +\fB\-\-onlyFW\fR [firmware revision] +.IP +Use this option to run on all drives matching the provided +firmware revision. This option will only do an exact match. +.HP +\fB\-\-onlySeagate\fR +.IP +Use this option to match only Seagate drives for the options +provided +.HP +\fB\-q\fR, \fB\-\-quiet\fR +.IP +Run openSeaChest_Configure in quiet mode. This is the same as +\fB\-v\fR 0 or \fB\-\-verbose\fR 0 +.HP +\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +.IP +Show verbose information. Verbosity levels are: +0 \- quiet +1 \- default +2 \- command descriptions +3 \- command descriptions and values +4 \- command descriptions, values, and data buffers +Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 +.HP +\fB\-V\fR, \fB\-\-version\fR +.IP +Show openSeaChest_Configure version and copyright information & exit +.PP +Utility Arguments +================= .HP \fB\-d\fR, \fB\-\-device\fR deviceHandle .IP Use this option with most commands to specify the device handle on which to perform an operation. Example: /dev/sg? .HP -\fB\-i\fR, \fB\-\-deviceInfo\fR -.IP -Show information and features for the storage device -.HP \fB\-F\fR, \fB\-\-scanFlags\fR [option list] .IP Use this option to control the output from scan with the options listed below. Multiple options can be combined. -.IP +.TP ata \- show only ATA (SATA) devices -.br usb \- show only USB devices -.br scsi \- show only SCSI (SAS) devices -.br +nvme \- show only NVMe devices interfaceATA \- show devices on an ATA interface -.br interfaceUSB \- show devices on a USB interface -.br interfaceSCSI \- show devices on a SCSI or SAS interface -.br +interfaceNVME = show devices on an NVMe interface sd \- show sd device handles -.br sgtosd \- show the sd and sg device handle mapping .HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP \fB\-S\fR, \fB\-\-Scan\fR .IP This option is the same as \fB\-\-scan\fR or \fB\-s\fR, @@ -114,31 +210,33 @@ Use this option to change the PHY speed to a new maximum value. On SAS, this option will set all phys to the specified speed unless the \fB\-\-sasPhy\fR option is given to select a specific phy. -.br 0 \- allow full negotiation (default drive behavior) -.br 1 \- allow negotiation up to 1.5Gb/s -.br 2 \- allow negotiation up to 3.0Gb/s -.br 3 \- allow negotiation up to 6.0Gb/s -.br 4 \- allow negotiation up to 12.0Gb/s (SAS Only) -.br 5 \- allow negotiation up to 22.5Gb/s (SAS Only) +.IP +NOTE: SATA phy speed changes are only available on Seagate drives. +.TP +WARNING: Changing Phy speed may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP \fB\-\-readLookAhead\fR [info | enable | disable] .IP Use this option to enable or disable read look\-ahead support on a drive. Use the "info" argument to get the current status of the read look ahead feature. +.TP +WARNING: Changing Read look\-ahead may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP \fB\-\-restoreMaxLBA\fR .IP Restore the max accessible address of your drive to its native size. A power cycle is required after this command before setting a new max LBA. -.TP +.HP \fB\-\-setMaxLBA\fR newMaxLBA .IP Set the max accessible address of your drive to any value less @@ -151,63 +249,61 @@ max LBA. Use this option to enable or disable write cache support on a drive. Use the "info" argument to get the current status of the write cache feature. -.P +.TP +WARNING: Changing Write Cache may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.IP SATA Only: -.br ======== -.br \fB\-\-freeFall\fR [info | enable | disable | sensitivity value] (SATA only) .IP Use this option to configure the Free Fall control feature found on some SATA drives. This feature allows the drive to take action if it detects it is in free fall to protect the data from harm due to a drop. -.IP +.TP info \- use this to see the current sensitivity value -.br enable \- this option will set the sensitivity to the vendor's +.TP recommended value. -.br disable \- this will disable the free fall control feature. -.br sensitivity value \- set a value between 1 and 255 to control +.TP how sensitive the detection is. A value of zero will set the vendor's recommended value. .TP -\fB\-\-lowCurrentSpinup\fR [ low | ultra | disable ] (SATA Only) +\fB\-\-lowCurrentSpinup\fR [ low | ultra | disable ] +(SATA Only) (Seagate Only) .IP Use this option to set the state of the low current spinup -feature on Seagate SATA drives. When this setting is enabled -for low or ultra low mode, the drive will take longer to spinup -and become ready. -.IP +feature on Seagate SATA drives. +When this setting is enabled for low or ultra low mode, +the drive will take longer to spinup and become ready. Note: This feature is not available on every drive. -.br -Note: Some products will support low, but not the ultra low -current spinup mode. +Note: Some products will support low, but not the ultra +.IP +low current spinup mode. .TP -\fB\-\-puisFeature\fR [ enable | disable ] (SATA Only) +\fB\-\-puisFeature\fR [ enable | disable ] +(SATA Only) .IP Use this option to enable or disable the power up in standby (PUIS) feature on SATA drives. +Note: If this is configured on the drive with a jumper, this .IP -Note: If this is configured on the drive with a jumper, this command will fail. +command will fail. .IP Note2: Not all products support this feature. .HP -\fB\-\-sscFeature\fR [info | default | enable | disable] (SATA Only) +\fB\-\-sscFeature\fR [info | default | enable | disable] (SATA Only) (Seagate Only) .IP Use this option to change or view the SSC (Spread Spectrum Clocking) mode on a Seagate SATA drive. Only change this setting if you are experiencing compatibility problems with the drive in a system. -.IP info \- show current SSC state -.br default \- set to drive default mode -.br enable \- enable SSC -.br disable \- disable SSC .HP \fB\-\-sctReadTimer\fR [info | value] (SATA Only) @@ -222,13 +318,9 @@ of the read timer. A value of 0 means that all possible error recovery will be performed before returning status. Other values should include a unit to know the time to use. If no unit is provided, it is assumed to be the value * 100 ms -.br Ex1: \fB\-\-sctReadTimer\fR 15s for a 15 second timer. -.br Ex2: \fB\-\-sctReadTimer\fR 15000ms for a 15 second timer expressed in milliseconds -.br Ex2: \fB\-\-sctReadTimer\fR 150 for a 15 second timer with no units specified -.br The maximum time that can be specified is 1 hour, 49 minutes, 13 seconds Note: On some SAT HBAs/bridges, status will not be able to be determined due to HBA/bridge limitations. @@ -279,38 +371,45 @@ of the write timer. A value of 0 means that all possible error recovery will be performed before returning status. Other values should include a unit to know the time to use. If no unit is provided, it is assumed to be the value * 100 ms -.br Ex1: \fB\-\-sctWriteTimer\fR 15s for a 15 second timer. -.br Ex2: \fB\-\-sctWriteTimer\fR 15000ms for a 15 second timer expressed in milliseconds -.br Ex2: \fB\-\-sctWriteTimer\fR 150 for a 15 second timer with no units specified -.br The maximum time that can be specified is 1 hour, 49 minutes, 13 seconds Note: On some SAT HBAs/bridges, status will not be able to be determined due to HBA/bridge limitations. -.P +.IP SAS Only: -.br ======== -.br -\fB\-\-readyLED\fR [info | on | off | default] (SAS Only) +\fB\-\-nvCache\fR [info | enable | disable] (SAS Only) +.IP +Use this option to enable or disable the SCSI Non\-Volatile cache +.IP +on a drive. Use the "info" argument to get +.IP +the current status of the Non\-Volatile Cache setting. +.TP +WARNING: Changing NV Cache may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-readyLED\fR [info | on | off | default] (SAS Only) .IP Use this option to get the current state or change the behavior of the ready LED. See the SPL spec for full details on how this changes LED -.IP +.TP info \- gets the current state of the ready LED. -.br on \- sets the ready LED to usually off unless +.TP processing a command. -.br off \- sets the ready LED to usually on unless +.TP processing a command -.br default \- sets the ready LED to the drive's default value +.TP +WARNING: The EPC settings may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP -\fB\-\-sasPhy\fR [phy number] (SAS Only) +\fB\-\-sasPhy\fR [phy number] (SAS Only) .IP Use this option to specify a specific phy to use with another option that uses a phy identifier value. @@ -318,268 +417,141 @@ Some tool options will assume all SAS Phys when this option is not present. Others will produce an error when a specific phy is needed for an operation. Use the \fB\-i\fR option to learn more about the supported phys. - -.HP -\fB\-\-scsiLPReset\fR [cumulative | threshold | defCumulative | defThreshold | all] (SAS only) -.IP -Use this option to reset all SCSI Log Pages. If the device is -compliant with SPC4 or later, the \fB\-\-scsiLPResetPage\fR option may -be used to specify a specific page to reset. The \fB\-\-volatile\fR -option may also be passed to prevent saving changes. +.TP +\fB\-\-scsiLPReset\fR [cumulative | threshold | defCumulative | defThreshold | all] +(SAS only) .IP -cumulative - reset the cumulative values -.br -threshold - reset the threshold values -.br -defCumulative - reset the cumulative values to default without saving. -.br -defThreshold - reset the threshold values to default without saving. -.br -all - sends the log page reset command to all of the above control values -.HP -\fB\-\-scsiLPResetPage\fR [page# | page-subpage#] (SAS only) +Use this option to reset all SCSI Log Pages. +If the device is compliant with SPC4 or later, the +\fB\-\-scsiLPResetPage\fR option may be used to specify a specific page to reset. +The \fB\-\-volatile\fR option may also be passed to prevent saving changes. +.TP +cumulative \- reset the cumulative values +threshold \- reset the threshold values +defCumulative \- reset the cumulative values to default without saving. +defThreshold \- reset the threshold values to default without saving. +all \- sends the log page reset command to all of the above control values +.TP +WARNING: Resetting log pages may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.TP +\fB\-\-scsiLPResetPage\fR [page# | page\-subpage#] +(SAS only) .IP This option is used to specify a specific page, and/or subpage -to be used with the \fB\-\-scsiLPReset\fR option. -.br +to be used with the \fB\-\-scsiLPReset\fR option. NOTE: This option will only work on newer drives compliant with the SPC4 specification. -.HP -\fB\-\-scsiMPReset\fR [page# | page-subpage#] (SAS only) -.IP -This option will reset the specified mode page(s) to their -default settings. Valid page numbers range from 0 to 3Fh. Valid -subpage numbers range from 0 to FFh. -.IP -(MP) Mode page 3Fh specifies all mode pages and can be used to -reset all mode pages. (SP) Subpage FFh specifies all subpages -of a given page and will reset all those subpages. Using both -MP 3Fh and SP FFh will reset all pages and subpages on a device. -.HP -\fB\-\-scsiMPRestore\fR [page# | page-subpage#] (SAS only) -.IP -This option will restore the specified mode page(s) to their -saved settings. Valid page numbers range from 0 to 3Fh. Valid -subpage numbers range from 0 to FFh. -.IP -(MP) Mode page 3Fh specifies all mode pages and can be used to -restore all mode pages. (SP) Subpage FFh specifies all subpages -of a given page and will restore all those subpages. Using both -MP 3Fh and SP FFh will restore all pages and subpages on a -device. -.HP -\fB\-\-scsiMPSave\fR [page# | page-subpage#] (SAS only) -.IP -This option will save the current specified mode page(s) to the -saved settings. Valid page numbers range from 0 to 3Fh. Valid -subpage numbers range from 0 to FFh. -.IP -(MP) Mode page 3Fh specifies all mode pages and can be used to -save all mode pages. (SP) Subpage FFh specifies all subpages of -a given page and will save all those subpages. Using both MP -3Fh and SP FFh will save all pages and subpages on a device. -.HP -\fB\-\-setSCSIMP\fR [ mp[-sp]:byte:highestBit:fieldWidthInBits=value | file=filename.txt ] (SAS only) (Seagate Only) -.IP -Use this option to set a specific field in a mode page to a -value. There are two argument formats to this option: -.IP -1. The first format expects a mode page (in hex), optionally a -subpage code (in hex), the byte offset that the field starts -at (in decimal), the highest bit the field starts at (0-7), -the width of the field in as a number of bits (decimal), and -the value to set (hex or decimal). A maximum of 64bits can -be set at a time with this option. -.br -2. The second format is a text file that contains all bytes of -the mode page in hex. Each byte must be separated by a -space, new line, or underscore. It is recommended that this -file is created by copy-pasting the output of the -\fB\-\-showSCSIMP\fR option's default classic view, then modifying -after that. -.IP -Example use of the arguments: -.br -1. Setting WCE to zero on Caching MP 8 from command line: -.br -command line: 08:2:2:1=0 -.br -2. Setting DLC to one on Control Extension MP from command line: -.br -command line: 0A-01:4:3:1=1 -.br -3. Setting WCE to zero on Caching MP 8 from a text file: -.br -command line: file=cachingModePage.txt -.br -File contents: 88 12 10 00 FF FF 00 00 FF FF FF FF 90 20 00 00 00 00 00 00 -.HP -\fB\-\-showSCSIMP\fR [page# | page-subpage#] (SAS only) -.IP -This option will display the specified mode page on the screen -as raw hexadecimal data bytes. Use \fB\-\-showSCSIMPControl\fR to -control the output. If \fB\-\-showSCSIMPControl\fR is not provided, -the current values will be shown. -.IP -(MP) Mode page 3Fh specifies all mode pages and can be used to -show all mode pages. (SP) Subpage FFh specifies all subpages of -a given page and will show all those subpages. Using both MP -3Fh and SP FFh will show all pages and subpages on a device. -.IP -Note: page# is a decimal value unless it has the characters A -through F, then it is hexadecimal. Page 18, for example, would -be 12h so be sure to say 18h if that is the page you want. -.IP -Example: \fB\-\-showSCSIMP\fR 3F-FF -.br -\fB\-\-showSCSIMP\fR 18h -.br -\fB\-\-showSCSIMP\fR 24 (shows page 18h) -.HP -\fB\-\-showSCSIMPControl\fR [current | default | saved | changeable | all] (SAS only) -.IP -Use this option to control the output of the \fB\-\-showSCSIMP\fR -option. -.IP -current - show the current values of the mode page. -.br -default - show the default values of the mode page. -.br -saved - show the saved values of the mode page. -.br -changeable - show the changeable fields in a mode page. -.br -all - show all of the above formats for a given mode page. -.IP -Example: \fB\-\-showSCSIMP\fR 8 \fB\-\-showSCSIMPControl\fR all -.HP -\fB\-\-showMPOutputMode\fR [classic | buffer] (SAS Only) -.IP -Use this option to control the format of the output when -displaying a SCSI mode page. Modes: -.br -classic - This output is a classic output from old SCSI -manuals where the bytes of the page are output in a -series of rows across the screen in hexadecimal format. -.br -buffer - This output is a formatted buffer showing offsets -on the top and side in hex. This will output each row -with up to 16 bytes of data before moving to the next row. - - -.PP -Utility Options -.br -=============== -.HP -\fB\-\-echoCommandLine\fR -.IP -Echo the command line entered into the utility on the screen. -.HP -\fB\-\-enableLegacyUSBPassthrough\fR -.IP -Only use this option on old USB or IEEE1394 (Firewire) -products that do not otherwise work with the tool. -This option will enable a trial and error method that -attempts sending various ATA Identify commands through -vendor specific means. Because of this, certain products -that may respond in unintended ways since they may interpret -these commands differently than the bridge chip the command -was designed for. -.HP -\fB\-\-forceATA\fR -.IP -Using this option will force the current drive to -be treated as a ATA drive. Only ATA commands will -be used to talk to the drive. .TP -\fB\-\-forceATADMA\fR (SATA Only) -.IP -Using this option will force the tool to issue SAT -commands to ATA device using the protocol set to DMA -whenever possible (on DMA commands). -This option can be combined with \fB\-\-forceATA\fR +WARNING: Resetting log pages may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .TP -\fB\-\-forceATAPIO\fR (SATA Only) -.IP -Using this option will force the tool to issue PIO -commands to ATA device when possible. This option can -be combined with \fB\-\-forceATA\fR +\fB\-\-scsiMPReset\fR [page# | page\-subpage#] +(SAS only) +.IP +This option will reset the specified mode page(s) to their default +settings. Valid page numbers range from 0 to 3Fh. Valid subpage numbers +range from 0 to FFh. +(MP) Mode page 3Fh specifies all mode pages and can be used to reset all mode pages. +(SP) Subpage FFh specifies all subpages of a given page and will reset all those subpages. +Using both MP 3Fh and SP FFh will reset all pages and subpages on a device. +.TP +WARNING: Resetting mode pages may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.TP +\fB\-\-scsiMPRestore\fR [page# | page\-subpage#] +(SAS only) +.IP +This option will restore the specified mode page(s) to their saved +settings. Valid page numbers range from 0 to 3Fh. Valid subpage numbers +range from 0 to FFh. +(MP) Mode page 3Fh specifies all mode pages and can be used to restore all mode pages. +(SP) Subpage FFH specifies all subpages of a given page and will restore all those subpages. +Using both MP 3Fh and SP FFh will restore all pages and subpages on a device. +.TP +WARNING: Restoring mode pages may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.TP +\fB\-\-scsiMPSave\fR [page# | page\-subpage#] +(SAS only) +.IP +This option will save the current specified mode page(s) to the saved +settings. Valid page numbers range from 0 to 3Fh. Valid subpage numbers +range from 0 to FFh. +(MP) Mode page 3Fh specifies all mode pages and can be used to save all mode pages. +(SP) Subpage FFH specifies all subpages of a given page and will save all those subpages. +Using both MP 3Fh and SP FFh will save all pages and subpages on a device. .TP -\fB\-\-forceATAUDMA\fR (SATA Only) +WARNING: Saving mode pages may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.TP +\fB\-\-setSCSIMP\fR [ mp[\-sp]:byte:highestBit:fieldWidthInBits=value | file=filename.txt ] +(SAS only) .IP -Using this option will force the tool to issue SAT -commands to ATA device using the protocol set to UDMA -whenever possible (on DMA commands). -This option can be combined with \fB\-\-forceATA\fR -.HP -\fB\-\-forceSCSI\fR +Use this option to set a specific field in a mode page to a value. +There are two argument formats to this option: +1. The first format expects a mode page (in hex), optionally a subpage code (in hex), .IP -Using this option will force the current drive to -be treated as a SCSI drive. Only SCSI commands will -be used to talk to the drive. -.HP -\fB\-h\fR, \fB\-\-help\fR +the byte offset that the field starts at (in decimal), the highest bit the field starts +at (0\-7), the width of the field in as a number of bits (decimal), and the value to set (hex or decimal) +A maximum of 64bits can be set at a time with this option. .IP -Show utility options and example usage (this output you see now) -Please report bugs/suggestions to seaboard@seagate.com. -Include the output of \fB\-\-version\fR information in the email. -.HP -\fB\-\-license\fR +2. The second format is a text file that contains all bytes of the mode page in hex. Each byte .IP -Display the Seagate End User License Agreement (EULA). -.HP -\fB\-\-modelMatch\fR [model Number] +must be separated by a space, new line, or underscore. It is recommended that this file +is created by copy\-pasting the output of the \fB\-\-showSCSIMP\fR option's default classic view, then modifying +after that. Example use of the arguments: .IP -Use this option to run on all drives matching the provided -model number. This option will provide a closest match although -an exact match is preferred. Ex: ST500 will match ST500LM0001 -.HP -\fB\-\-onlyFW\fR [firmware revision] +1. Setting WCE to zero on caching MP from a file: .IP -Use this option to run on all drives matching the provided -firmware revision. This option will only do an exact match. -.HP -\fB\-\-onlySeagate\fR +command line: file=cachingModePage.txt +File contents: 88 12 10 00 FF FF 00 00 FF FF FF FF 90 20 00 00 00 00 00 00 .IP -Use this option to match only Seagate drives for the options -provided -.HP -\fB\-q\fR, \fB\-\-quiet\fR +2. Setting WCE to zero on caching MP from command line: .IP -Run openSeaChest_Configure in quiet mode. This is the same as -\fB\-v\fR 0 or \fB\-\-verbose\fR 0 -.HP -\fB\-\-sat12byte\fR +command line: 08:2:2:1=0 .IP -This forces the lower layer code to issue SAT spec -ATA Pass\-through 12 byte commands when possible instead -of 16 byte commands. By default, 16 byte commands are -always used for ATA Pass\-through. -.HP -\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +3. Setting DLC to one on Control Extension MP from command line: .IP -Show verbose information. Verbosity levels are: -.br -0 \- quiet -.br -1 \- default -.br -2 \- command descriptions -.br -3 \- command descriptions and values -.br -4 \- command descriptions, values, and data buffers -.br -Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 -.HP -\fB\-V\fR, \fB\-\-version\fR +command line: 0A\-01:4:3:1=1 +.TP +WARNING: Changing mode pages may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.TP +\fB\-\-showMPOutputMode\fR [classic | buffer] +(SAS Only) .IP -Show openSeaChest_Configure version and copyright information & exit +Use this option to control the format of the output when displaying a SCSI mode page. +Modes: +.TP +classic \- This output is a classic output from old SCSI manuals where the bytes of +the page are output in a rows across the screen in hexadecimal format. +.TP +buffer +\- This output is a formatted buffer showing offsets on the top and side in hex. +.TP +This will output each row with up to 16 bytes of data before moving to the +next row. +.TP +\fB\-\-showSCSIMP\fR [page# | page\-subpage#] +(SAS only) +.IP +This option will display the specified mode page on the screen as raw +hexadecimal data bytes. Use \fB\-\-showSCSIMPControl\fR to control the output. +If \fB\-\-showSCSIMPControl\fR is not provided, the current values will be shown. +.TP +\fB\-\-showSCSIMPControl\fR [current | default | saved | changeable | all] +(SAS only) +.TP +Use this option to control the output of the \fB\-\-showSCSIMP\fR option. +current \- show the current values of the mode page. +default \- show the default values of the mode page. +saved \- show the saved values of the mode page. +changeable \- show the changable fields in a mode page. +all \- show all of the above formats for a given mode page. .PP -Data Destructive Commands (Seagate only) -.br -======================================== +Data Destructive Commands +========================= .HP \fB\-\-provision\fR newMaxLBA .IP @@ -589,122 +561,37 @@ after this command before resetting the max LBA or changing the provisioning again. This command erases all data between the new maxLBA specified and the current maxLBA of the device. using a TRIM/UNMAP command. +.IP +openSeaChest_Configure \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Configure Version: 2.1.0\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:47:10 2022 User: tyler .PP -Return codes -.br -============ -.br -Generic/Common exit codes -.br -0 = No Error Found -.br -1 = Error in command line options -.br -2 = Invalid Device Handle or Missing Device Handle -.br -3 = Operation Failure -.br -4 = Operation not supported -.br -5 = Operation Aborted -.br -6 = File Path Not Found -.br -7 = Cannot Open File -.br -8 = File Already Exists -.br -Anything else = unknown error -.PP -.PP -.br -========================================================================================== -.br -openSeaChest_Configure \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved.br -.br ========================================================================================== -.br Version Info for openSeaChest_Configure: .IP -Utility Version: 1.16.0 -.br -opensea\-common Version: 1.18.0 -.br -opensea\-transport Version: 1.19.2 -.br -opensea\-operations Version: 1.23.0 -.br -Build Date: Feb 28 2019 -.br +Utility Version: 2.1.0 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 Compiled Architecture: X86_64 -.br Detected Endianness: Little Endian -.br Compiler Used: GCC -.br -Compiler Version: 4.4.7 -.br +Compiler Version: 11.2.0 Operating System Type: Linux -.br -Operating System Version: 4.14.10\-0 -.br -Operating System Name: TinyCoreLinux 9.0 -.br -Edition: JBOD, NVMe -.br -RAID Support: none - - -.SH "REPORTING BUGS" -Please report bugs/suggestions to seaboard at seagate dot com. Include the output of -\fB\-\--version\fR information in the email. See the user guide section 'General Usage -Hints' for information about saving output to a log file. - -.SH COPYRIGHT -Copyright \(co 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -BINARIES and SOURCE CODE files of the openSeaChest open source project have -been made available to you under the Mozilla Public License 2.0 (MPL). Mozilla -is the custodian of the Mozilla Public License ("MPL"), an open source/free -software license. -.br -https://www.mozilla.org/en-US/MPL/ -.br -You -can run -the command option \fB\-\--license\fR to display the agreement and acknowledgements of various open -source tools and projects used with SeaChest Utilities. -.PP -This software uses open source packages obtained with permission from the -relevant parties. For a complete list of open source components, sources and -licenses, please see our Linux USB Boot Maker Utility FAQ for additional -information. -.PP -SeaChest Utilities use libraries from the opensea source code projects. These -projects are maintained at http://github.com/seagate. -The libraries in use are opensea-common, opensea-transport and -opensea-operations. These libraries are available under the Mozilla Public -License 2.0. - - -.SH WEB SITE -There are web pages discussing this software at -.br -https://github.com/Seagate/openSeaChest +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS .SH "SEE ALSO" -.B openSeaChest_Basics, openSeaChest_Configure, openSeaChest_Erase, openSeaChest_Firmware, openSeaChest_Format, openSeaChest_GenericTests, openSeaChest_Info, openSeaChest_Logs, openSeaChest_PowerControl, openSeaChest_SMART - -The full documentation and version history for +The full documentation for .B openSeaChest_Configure -is maintained as a simple text file with this name: -.br -.B openSeaChest_Configure..txt -The number part of the name will change with each revision. -.br -The command -.IP -.B less /openSeaChest_Configure..txt +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_Configure +programs are properly installed at your site, the command +.IP +.B info openSeaChest_Configure .PP should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_Erase.8 b/docs/man/man8/openSeaChest_Erase.8 index 212f3282..bea684a2 100644 --- a/docs/man/man8/openSeaChest_Erase.8 +++ b/docs/man/man8/openSeaChest_Erase.8 @@ -1,67 +1,161 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4. -.\" Assuming you have the man tool installed, you can read this file directly with -.\" man ./openSeaChest_.8 -.\" System administration man pages are kept in the man8 folder. Use the manpath tool -.\" to determine the location of man pages on your system. Your favorite Linux system -.\" probably has man8 pages stored at: -.\" /usr/local/share/man/man8 -.\" or -.\" /usr/share/man/man8 -.\" -.\" If you want to use them then just copy to one of the above folders and they will -.\" be found. Just type: -.\" man openSeaChest_ -.ad l -.TH OPENSEACHEST_ERASE "8" "March 2019" "openSeaChest_Utilities" "System Administration Utilities" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_ERASE "1" "July 2022" "openSeaChest_Erase ==========================================================================================" "User Commands" .SH NAME -openSeaChest_Erase +openSeaChest_Erase \- manual page for openSeaChest_Erase ========================================================================================== .SH DESCRIPTION ========================================================================================== -.br -openSeaChest_Erase \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -openSeaChest_Erase Version: 2.0.0\-1_19_2 X86_64 -.br -Build Date: Feb 28 2019 -.br -========================================================================================== +.IP +openSeaChest_Erase \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Erase Version: 3.2.0\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:47:20 2022 User: tyler .PP +========================================================================================== Usage -.br ===== .IP openSeaChest_Erase [\-d ] {arguments} {options} .PP Examples -.br ======== .IP openSeaChest_Erase \fB\-\-scan\fR -.br openSeaChest_Erase \fB\-d\fR /dev/sg? \fB\-i\fR .PP -Utility Arguments -.br -================= +Return codes +============ +.IP +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error +.PP +Utility Options +=============== .HP -\fB\-s\fR, \fB\-\-scan\fR +\fB\-\-echoCommandLine\fR .IP -Scan the system and list all storage devices with logical -/dev/sg? assignments. Shows model, serial and firmware -numbers. If your device is not listed on a scan immediately -after booting, then wait 10 seconds and run it again. +Echo the command line entered into the utility on the screen. +.HP +\fB\-\-enableLegacyUSBPassthrough\fR +.IP +Only use this option on old USB or IEEE1394 (Firewire) +products that do not otherwise work with the tool. +This option will enable a trial and error method that +attempts sending various ATA Identify commands through +vendor specific means. Because of this, certain products +that may respond in unintended ways since they may interpret +these commands differently than the bridge chip the command +was designed for. +.HP +\fB\-\-forceATA\fR +.IP +Using this option will force the current drive to +be treated as a ATA drive. Only ATA commands will +be used to talk to the drive. +.TP +\fB\-\-forceATADMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to DMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAPIO\fR +(SATA Only) +.IP +Using this option will force the tool to issue PIO +commands to ATA device when possible. This option can +be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAUDMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to UDMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.HP +\fB\-\-forceSCSI\fR +.IP +Using this option will force the current drive to +be treated as a SCSI drive. Only SCSI commands will +be used to talk to the drive. +.HP +\fB\-h\fR, \fB\-\-help\fR +.IP +Show utility options and example usage (this output you see now) +Please report bugs/suggestions to seaboard@seagate.com. +Include the output of \fB\-\-version\fR information in the email. +.HP +\fB\-\-hideLBACounter\fR +.IP +Use this option to suppress the output from +options that show LBA counters without turning +off all output to the screen. +.HP +\fB\-\-license\fR +.IP +Display the Seagate End User License Agreement (EULA). +.HP +\fB\-\-modelMatch\fR [model Number] +.IP +Use this option to run on all drives matching the provided +model number. This option will provide a closest match although +an exact match is preferred. Ex: ST500 will match ST500LM0001 +.HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP +\fB\-\-onlyFW\fR [firmware revision] +.IP +Use this option to run on all drives matching the provided +firmware revision. This option will only do an exact match. +.HP +\fB\-\-onlySeagate\fR +.IP +Use this option to match only Seagate drives for the options +provided +.HP +\fB\-q\fR, \fB\-\-quiet\fR +.IP +Run openSeaChest_Erase in quiet mode. This is the same as +\fB\-v\fR 0 or \fB\-\-verbose\fR 0 +.HP +\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +.IP +Show verbose information. Verbosity levels are: +0 \- quiet +1 \- default +2 \- command descriptions +3 \- command descriptions and values +4 \- command descriptions, values, and data buffers +Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 +.HP +\fB\-V\fR, \fB\-\-version\fR +.IP +Show openSeaChest_Erase version and copyright information & exit +.PP +Utility Arguments +================= .HP \fB\-d\fR, \fB\-\-device\fR deviceHandle .IP Use this option with most commands to specify the device handle on which to perform an operation. Example: /dev/sg? .HP -\fB\-i\fR, \fB\-\-deviceInfo\fR -.IP -Show information and features for the storage device -.HP \fB\-\-displayLBA\fR [LBA] .IP This option will read and display the contents of @@ -73,31 +167,31 @@ is hexadecimal with an ASCII translation on the side .IP Use this option to control the output from scan with the options listed below. Multiple options can be combined. -.IP +.TP ata \- show only ATA (SATA) devices -.br usb \- show only USB devices -.br scsi \- show only SCSI (SAS) devices -.br +nvme \- show only NVMe devices interfaceATA \- show devices on an ATA interface -.br interfaceUSB \- show devices on a USB interface -.br interfaceSCSI \- show devices on a SCSI or SAS interface -.br -.br +interfaceNVME = show devices on an NVMe interface sd \- show sd device handles -.br sgtosd \- show the sd and sg device handle mapping .HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP \fB\-\-poll\fR .IP Use this option to cause another operation to poll for progress until it has completed. This argument does not return to the command prompt and prints ongoing completion percentages (%) +.TP the final test result. Full drive procedures will take a +.TP very long time. Used with \fB\-\-sanitize\fR, or \fB\-\-writeSame\fR (SATA). .HP @@ -108,6 +202,13 @@ the polling option (default). You must specify a test you wish to get progress from. Ex: "\-\-progress dst" or "\-\-progress sanitize" The progress counts up from 0% to 100%. .HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP \fB\-S\fR, \fB\-\-Scan\fR .IP This option is the same as \fB\-\-scan\fR or \fB\-s\fR, @@ -155,6 +256,9 @@ for a timed operation to run. This option checks the drive to determine which methods of data erasure are supported and lists them, from fastest to slowest. +.TP +WARNING: Some erase methods may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP \fB\-\-showPhysicalElementStatus\fR .IP @@ -164,208 +268,60 @@ Use the element # shown with the \fB\-\-removePhysicalElement\fR option to remove that storage element from use. This option can also be used to see if a depopulation is still in progress or if it has completed. -.PP +.IP SATA Only: -.br ========= -.br -\fB\-\-disableATASecurityPW\fR [SeaChest | ASCIIPW] [user | master] -.IP -Use this option to disable an ATA security password. -If a drive lost power during an ATA Security Erase in -openSeaChest_Erase, then using the option "SeaChest" will remove -the password used by the utility. To disable a -password set by a BIOS, the BIOS must have set the -password in ASCII. A BIOS may choose to hash the -password typed in the configuration however it -chooses and this utility has no idea how to match what -the BIOS has done so it may not always work to remove -a password set by something other than this utility. -.HP -\fB\-\-ataSATsecurityProtocol\fR [enable | disable] (SATA only) +\fB\-\-ataSATsecurityProtocol\fR [enable | disable] (SATA only) .IP This option can be used to force enable or disable using the -ATA security protocol as specified in the SAT specification. By -default, the tool will use this method when it is supported to -allow the SATL to understand and manage the security commands +ATA security protocol as specified in the SAT specification. +By default, the tool will use this method when it is supported +to allow the SATL to understand and manage the security commands being performed and prevent other issues. -.HP -\fB\-\-ataSecPassword\fR ["ASCII password" | SeaChest | empty] (SATA only) -.IP -Use this option to specify a password to use with an ATA -security operation. If specifying a password with spaces, -quotes must be used. If SeaChest is given, the default SeaChest -password will be used. If empty is given, an empty password -will be used. +.TP +\fB\-\-ataSecPassword\fR ["ASCII password" | SeaChest | empty] +(SATA only) .IP +Use this option to specify a password to use with an ATA security +operation. If specifying a password with spaces, quotes must be used. +If SeaChest is given, the default SeaChest password will be used. +If empty is given, an empty password will be used. Examples: -.br +.IP "This is a valid password" -.br ThisIsAlsoValid -.br -"This password uses \"quotes\" -.br -"This password is \/\/eird" -.br -In Windows PE, MS will allow issuing secure erase using the -following as a USER password: AutoATAWindowsString12345678901 -.HP -\fB\-\-ataSecPassType\fR [user | master] (SATA only) +"This password uses \e"quotes\e" +"This password is \e/\e/eird" +.TP +\fB\-\-ataSecPassType\fR [user | master] +(SATA only) .IP Use this option to specify if the password being given with the -\fB\-\-ataSecPassword\fR option is a user or a master password. If this -option is not provided, user is assumed. +\fB\-\-ataSecPassword\fR option is a user or a master password. +If this option is not provided, user is assumed. .HP -\fB\-\-ataSecPWMod\fR [byteswapped | zeropad | spacepad | fpad | leftAlign | -rightAlign | uppercase | lowercase | invertcase] (SATA Only) +\fB\-\-ataSecPWMod\fR [byteswapped | zeropad | spacepad | fpad | leftAlign | rightAlign | uppercase | lowercase | invertcase] (SATA Only) .IP -Use this option to have the utility make modifications to the -ATA security password to attempt other various ways it may be -sent by a system bios. These are not guaranteed to work, but +Use this option to have the utility make modifications to +the ATA security password to attempt other various ways it may +be sent by a system bios. These are not guaranteed to work, but may help unlock a drive that was locked by a BIOS that encoded -the password in a unique way. This option can be presented -multiple times to select multiple modificaitons. -.IP +the password in a unique way. +This option can be presented multiple times to select multiple modificaitons. EX: \fB\-\-ataSecPWMod\fR byteswapped \fB\-\-ataSecPWMod\fR invertcase -.br -byteswapped - byteswaps the password. EX: blah -> lbha -.br -zeropad - zero pads the password if less than 32 characters -.br -spacepad - space pads the password if less than 32 characters -.br -fpad - pads the passwords with Fh (all 1's) if less than 32characters -.br -leftAlign - left aligns the password in the buffer -.br -rightAlign - right aligns the password in the buffer -.br -uppercase - sends the password as all uppercase -.br -lowercase - sends the password as all lowercase -.br -invertcase - switches uppercase for lower, and lowercase for upper -.br -.PP -Utility Options -.br -=============== -.HP -\fB\-\-echoCommandLine\fR -.IP -Echo the command line entered into the utility on the screen. -.HP -\fB\-\-enableLegacyUSBPassthrough\fR -.IP -Only use this option on old USB or IEEE1394 (Firewire) -products that do not otherwise work with the tool. -This option will enable a trial and error method that -attempts sending various ATA Identify commands through -vendor specific means. Because of this, certain products -that may respond in unintended ways since they may interpret -these commands differently than the bridge chip the command -was designed for. -.HP -\fB\-\-forceATA\fR -.IP -Using this option will force the current drive to -be treated as a ATA drive. Only ATA commands will -be used to talk to the drive. -.TP -\fB\-\-forceATADMA\fR (SATA Only) -.IP -Using this option will force the tool to issue SAT -commands to ATA device using the protocol set to DMA -whenever possible (on DMA commands). -This option can be combined with \fB\-\-forceATA\fR -.TP -\fB\-\-forceATAPIO\fR (SATA Only) -.IP -Using this option will force the tool to issue PIO -commands to ATA device when possible. This option can -be combined with \fB\-\-forceATA\fR -.TP -\fB\-\-forceATAUDMA\fR (SATA Only) -.IP -Using this option will force the tool to issue SAT -commands to ATA device using the protocol set to UDMA -whenever possible (on DMA commands). -This option can be combined with \fB\-\-forceATA\fR -.HP -\fB\-\-forceSCSI\fR -.IP -Using this option will force the current drive to -be treated as a SCSI drive. Only SCSI commands will -be used to talk to the drive. -.HP -\fB\-h\fR, \fB\-\-help\fR -.IP -Show utility options and example usage (this output you see now) -Please report bugs/suggestions to seaboard@seagate.com. -Include the output of \fB\-\-version\fR information in the email. -.HP -\fB\-\-hideLBACounter\fR -.IP -Use this option to suppress the output from -options that show LBA counters without turning -off all output to the screen. -.HP -\fB\-\-license\fR -.IP -Display the Seagate End User License Agreement (EULA). -.HP -\fB\-\-modelMatch\fR [model Number] -.IP -Use this option to run on all drives matching the provided -model number. This option will provide a closest match although -an exact match is preferred. Ex: ST500 will match ST500LM0001 -.HP -\fB\-\-onlyFW\fR [firmware revision] -.IP -Use this option to run on all drives matching the provided -firmware revision. This option will only do an exact match. -.HP -\fB\-\-onlySeagate\fR .IP -Use this option to match only Seagate drives for the options -provided -.HP -\fB\-q\fR, \fB\-\-quiet\fR -.IP -Run openSeaChest_Erase in quiet mode. This is the same as -\fB\-v\fR 0 or \fB\-\-verbose\fR 0 -.HP -\fB\-\-sat12byte\fR -.IP -This forces the lower layer code to issue SAT spec -ATA Pass\-through 12 byte commands when possible instead -of 16 byte commands. By default, 16 byte commands are -always used for ATA Pass\-through. -.HP -\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] -.IP -Show verbose information. Verbosity levels are: -.br -0 \- quiet -.br -1 \- default -.br -2 \- command descriptions -.br -3 \- command descriptions and values -.br -4 \- command descriptions, values, and data buffers -.br -Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 -.HP -\fB\-V\fR, \fB\-\-version\fR -.IP -Show openSeaChest_Erase version and copyright information & exit +byteswapped \- byteswaps the password. EX: blah \-> lbha +zeropad \- zero pads the password if less than 32 characters +spacepad \- space pads the password if less than 32 characters +fpad \- pads the passwords with Fh (all 1's) if less than 32characters +leftAlign \- left aligns the password in the buffer +rightAlign \- right aligns the password in the buffer +uppercase \- sends the password as all uppercase +lowercase \- sends the password as all lowercase +invertcase \- switches uppercase for lower, and lowercase for upper .PP -Data Destructive Commands (Seagate only) -.br -======================================== +Data Destructive Commands +========================= .HP \fB\-\-overwrite\fR [starting LBA] .IP @@ -392,22 +348,18 @@ of the LBA. i.e. helloword or FFFFFFFFh Note: A hexadecimal pattern will be interpreted as a 32bit unsigned integer. 4 hex bytes (8 characters) must be given for a hex value to be used. Ex: 1F037AC8h or 0000FFFFh -.br * random \- the entire logical sector size will be filled with random bytes.This pattern will be written to all LBAs in the desired range. -.br * increment \- enter the starting numerical value. Starting with this value, each byte will be written with 1 + previous value. -.br * file \- user supplied file name to use for a pattern. The file will be truncated or padded with zeros to the logical sector size -.br Note 1: Each file will be interpreted as a binary file. -.br Note 2: A path must also be provided if the file is not in the +.IP local directory. -.br +.TP Note 3: Sanitize Overwrite on SATA only supports a 32bit pattern. The file option will get truncated to a 32bit pattern for SATA products. @@ -419,9 +371,13 @@ data erasure are supported and determines which is the quickest to erase ALL data on the drive. It then starts the quickest erase. Combine this option with the \fB\-\-poll\fR option to enable polling for progress on the fastest erase. -.br Note: Some erase methods require polling and will have polling enabled by default. +Note 2: If revertSP is the fastest, it will not be started since +the drive PSID must be passed in on the command line. +.TP +WARNING: Some erase methods may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP \fB\-\-removePhysicalElement\fR [element #] .IP @@ -433,46 +389,50 @@ usable without the provided element #. Use the \fB\-\-showPhysicalElementStatus\fR option to see the status of the depopulation operation. .TP +WARNING: Removing a physical element affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.TP \fB\-\-sanitize\fR [info | blockerase | cryptoerase | overwrite | freezelock | antifreezelock] .IP -Use the info argument to show suported sanitize operations. +Use the info argument to show supported sanitize operations. Optionally, use blockerase, cryptoerase, or overwrite to start a sanitize operation. Adding the \fB\-\-poll\fR option will cause openSeaChest_Erase to poll the drive for progress until the operation is complete, or has aborted for some reason. All sanitize erase operations are persistent across a power cycle and cannot be stopped -.br Example: \fB\-\-sanitize\fR blockerase \fB\-\-poll\fR .IP * blockerase on some solid state drives is very fast at less than one (1) second, while others may take more that 30 seconds This operation performs a physical low level block erase operation on all current, past, and potential user data. -The contents on user data are indeterminate upon completion. Consider -using the \fB\-\-poll\fR option to monitor % completion. -.br +The contents on user data are indeterminate upon completion. +.IP * cryptoerase is very fast at less than one (1) second. It changes the internal encryption keys that are used for user data causing all previous data to be useless. -.br +.IP * overwrite is a physical overwrite on all current, past, and potential user data. The ATA and SCSI specifications allow a user defined pattern and multiple passes. openSeaChest_Erase will use a zero pattern and a single pass for this operation. -.br +.IP * freezelock is a command to block processing of sanitize operations until a power cycle is performed on a device. It is only available on ATA drives. Once this command has been sent, the freezelock status becomes immediate and cannot be cleared until the drive has been powered off. All sanitize commands, except a sanitize status will be aborted. -.br +.IP * antifreezelock is a command that is designed to block a freezelock command from locking out the sanitize feature set. It is only available on ATA drives that support the ACS3, or newer specification. +.TP +WARNING: Sanitize may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP \fB\-\-trim\fR or \fB\-\-unmap\fR [starting LBA] .IP @@ -493,29 +453,37 @@ of data on the drive. On SCSI devices, this uses the writesame16 command. On ATA devices, this uses the SCT writesame feature. Combine this option with the writeSameRange option to select the range. This operation will write 0's to the device for the -specified range. For SATA drives, adding the \fB\-\-poll\fR option will -cause this operation to poll for progress until complete. This -is not available on SAS and SCSI drives because SCSI drives do not -report the progress on a Write Same operation. +specified range. For SATA drives, this option will poll for progress +until the write same has completed. SAS/SCSI drives will hold the +tool busy until the write same has completed without progress +indication since this is not possible on SAS/SCSI due to specification +limitations on how write same was defined. On SATA, if any other commands are sent to the drive while it's performing a write same, the write same will be aborted. +NOTE: On SAS/SCSI drives this command is optional. Additionally, +.TP +the range may be limited to much less than the full device +size. Due to the history of this command, there is not a great +way to confirm support in all cases. Some ranges will be too +large, and some devices may or may not allow writing the full +medium in a single command. If you wish to write an entire +device, consider a different command such as format unit or +sanitize overwrite to accomplish this. .HP \fB\-\-writeSameRange\fR [range] .IP Specify a range to writesame to. Use this option with the writeSame option in order to begin a write same operation. -.PP +.IP SATA Only: -.br ========= -.br -\fB\-\-ataSecureErase\fR [normal | enhanced] (SATA only) +\fB\-\-ataSecureErase\fR [normal | enhanced] (SATA only) .IP Use "normal" to start a standard ATA security erase or "enhanced" to start an enhanced ATA security erase. .IP ATA Security Erase takes a very long time to complete at -approximately three (3) hours per Terabyte (HDD). Some Seagate +approximately three (3) hours per Tera\-byte (HDD). Some Seagate SED models will perform a quick cryptographic erase in enhanced mode and the time for completion is reported as 2 minutes by the drive, but will take only seconds. This industry @@ -525,44 +493,48 @@ this command unless you have ample time to allow it to run through to the end. If the procedure is interrupted prior to completion, then the drive will remain in a locked state and you must manually restart from the beginning again. The -password to unlock the drive is "SeaChest", plain ASCII -letters without the quotes +tool will attempt to automatically clear the password that was set +upon failure. The default password used by the tool is +"SeaChest", plain ASCII letters without the quotes .IP -* normal writes binary zeroes (0) or ones (1) to all user +* normal writes binary zeros (0) or ones (1) to all user data areas. -.br +.IP * enhanced will fill all user data areas and reallocated user data with a vendor specific pattern. Some Seagate Instant Secure Erase will perform a cryptographic erase instead of an overwrite. -.PP +.IP SAS Only: -.br ========= -.br -\fB\-\-fastFormat\fR [fast format mode] (SAS Only) (SBC4 required) +\fB\-\-fastFormat\fR [fast format mode] (SAS Only) (SBC4 required) .IP Use this option with the \fB\-\-formatUnit\fR option to run a fast format. Available fast format modes: -.IP +.TP 0 \- This is a standard format unit command. All logical blocks will be overwritten. This command will take a very long time -.br +.TP 1 \- This is a fast format unit command keeping existing data in physical sector. This option can be used to quickly change the the logical sector size between 5xxe and 4xxx. The media may be readable, but data may be unspecified or may return errors on read access according to it's error processing algorithms. -.br +.TP 2 \- This is a fast format unit command that can change the logical sector size quickly. Media may or may not be read accessible until a write has been performed to the media. .TP -\fB\-\-formatUnit\fR [current | new sector size] (SAS Only) +WARNING: Disable any out\-of\-band management systems/services/daemons +before using this option. Interruptions can be caused by these +and may prevent completion of a fast format operation. +.TP +\fB\-\-formatUnit\fR [current | new sector size] +(SAS Only) .IP This option will start a format unit operation on a SAS drive Use "current" to perform a format unit operation with the @@ -570,122 +542,44 @@ Sector size currently being used, otherwise enter a new sector size to use upon format completion. This command will erase all data on the drive. Combine this option with \fB\-\-poll\fR to poll for progress until the format is complete. +.TP +WARNING: Format Unit may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.TP +WARNING: Customer unique firmware may have specific requirements that +restrict sector sizes on some products. It may not be possible to format/ +fast format to common sizes like 4K or 512B due to these customer requirements. +.IP +openSeaChest_Erase \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Erase Version: 3.2.0\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:47:20 2022 User: tyler .PP -Return codes -.br -============ -.IP -Generic/Common exit codes -.br -0 = No Error Found -.br -1 = Error in command line options -.br -2 = Invalid Device Handle or Missing Device Handle -.br -3 = Operation Failure -.br -4 = Operation not supported -.br -5 = Operation Aborted -.br -6 = File Path Not Found -.br -7 = Cannot Open File -.br -8 = File Already Exists -.br -Anything else = unknown error -.PP -.PP -.br -========================================================================================== -.br -openSeaChest_Erase \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br ========================================================================================== -.br Version Info for openSeaChest_Erase: .IP -Utility Version: 2.0.0 -.br -opensea\-common Version: 1.18.0 -.br -opensea\-transport Version: 1.19.2 -.br -opensea\-operations Version: 1.23.0 -.br -Build Date: Feb 28 2019 -.br +Utility Version: 3.2.0 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 Compiled Architecture: X86_64 -.br Detected Endianness: Little Endian -.br Compiler Used: GCC -.br -Compiler Version: 4.4.7 -.br +Compiler Version: 11.2.0 Operating System Type: Linux -.br -Operating System Version: 4.14.10\-0 -.br -Operating System Name: TinyCoreLinux 9.0 -.br -Edition: JBOD, NVMe -.br -RAID Support: none - - -.SH "REPORTING BUGS" -Please report bugs/suggestions to seaboard at seagate dot com. Include the output of -\fB\-\--version\fR information in the email. See the user guide section 'General Usage -Hints' for information about saving output to a log file. - -.SH COPYRIGHT -Copyright \(co 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -BINARIES and SOURCE CODE files of the openSeaChest open source project have -been made available to you under the Mozilla Public License 2.0 (MPL). Mozilla -is the custodian of the Mozilla Public License ("MPL"), an open source/free -software license. -.br -https://www.mozilla.org/en-US/MPL/ -.br -You -can run -the command option \fB\-\--license\fR to display the agreement and acknowledgements of various open -source tools and projects used with SeaChest Utilities. -.PP -This software uses open source packages obtained with permission from the -relevant parties. For a complete list of open source components, sources and -licenses, please see our Linux USB Boot Maker Utility FAQ for additional -information. -.PP -SeaChest Utilities use libraries from the opensea source code projects. These -projects are maintained at http://github.com/seagate. -The libraries in use are opensea-common, opensea-transport and -opensea-operations. These libraries are available under the Mozilla Public -License 2.0. - - -.SH WEB SITE -There are web pages discussing this software at -.br -https://github.com/Seagate/openSeaChest +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS .SH "SEE ALSO" -.B openSeaChest_Basics, openSeaChest_Configure, openSeaChest_Erase, openSeaChest_Firmware, openSeaChest_Format, openSeaChest_GenericTests, openSeaChest_Info, openSeaChest_Logs, openSeaChest_PowerControl, openSeaChest_SMART - -The full documentation and version history for +The full documentation for .B openSeaChest_Erase -is maintained as a simple text file with this name: -.br -.B openSeaChest_Erase..txt -The number part of the name will change with each revision. -.br -The command -.IP -.B less /openSeaChest_Erase..txt +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_Erase +programs are properly installed at your site, the command +.IP +.B info openSeaChest_Erase .PP should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_Firmware.8 b/docs/man/man8/openSeaChest_Firmware.8 index 9512e443..1d89ca2a 100644 --- a/docs/man/man8/openSeaChest_Firmware.8 +++ b/docs/man/man8/openSeaChest_Firmware.8 @@ -1,185 +1,65 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4. -.\" Assuming you have the man tool installed, you can read this file directly with -.\" man ./openSeaChest_.8 -.\" System administration man pages are kept in the man8 folder. Use the manpath tool -.\" to determine the location of man pages on your system. Your favorite Linux system -.\" probably has man8 pages stored at: -.\" /usr/local/share/man/man8 -.\" or -.\" /usr/share/man/man8 -.\" -.\" If you want to use them then just copy to one of the above folders and they will -.\" be found. Just type: -.\" man openSeaChest_ -.ad l -.TH OPENSEACHEST_FIRMWARE "8" "March 2019" "openSeaChest_Utilities" "System Administration Utilities" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_FIRMWARE "1" "July 2022" "openSeaChest_Firmware ==========================================================================================" "User Commands" .SH NAME -openSeaChest_Firmware +openSeaChest_Firmware \- manual page for openSeaChest_Firmware ========================================================================================== .SH DESCRIPTION ========================================================================================== -.br -openSeaChest_Firmware \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -openSeaChest_Firmware Version: 2.6.0\-1_19_2 X86_64 -.br -Build Date: Feb 28 2019 -.br -========================================================================================== +.IP +openSeaChest_Firmware \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Firmware Version: 3.1.5\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:47:31 2022 User: tyler .PP +========================================================================================== Usage -.br ===== .IP openSeaChest_Firmware [\-d ] {arguments} {options} .PP Examples -.br ======== .IP openSeaChest_Firmware \fB\-\-scan\fR -.br openSeaChest_Firmware \fB\-d\fR /dev/sg? \fB\-i\fR -.PP -Utility Arguments -.br -================= -.HP -\fB\-s\fR, \fB\-\-scan\fR -.IP -Scan the system and list all storage devices with logical -/dev/sg? assignments. Shows model, serial and firmware -numbers. If your device is not listed on a scan immediately -after booting, then wait 10 seconds and run it again. -.HP -\fB\-d\fR, \fB\-\-device\fR deviceHandle -.IP -Use this option with most commands to specify the device -handle on which to perform an operation. Example: /dev/sg? -.HP -\fB\-i\fR, \fB\-\-deviceInfo\fR -.IP -Show information and features for the storage device -.HP -\fB\-F\fR, \fB\-\-scanFlags\fR [option list] -.IP -Use this option to control the output from scan with the -options listed below. Multiple options can be combined. -.IP -ata \- show only ATA (SATA) devices -.br -usb \- show only USB devices -.br -scsi \- show only SCSI (SAS) devices -.br -interfaceATA \- show devices on an ATA interface -.br -interfaceUSB \- show devices on a USB interface -.br -interfaceSCSI \- show devices on a SCSI or SAS interface -.br -sd \- show sd device handles -.br -sgtosd \- show the sd and sg device handle mapping -.HP -\fB\-S\fR, \fB\-\-Scan\fR -.IP -This option is the same as \fB\-\-scan\fR or \fB\-s\fR, -however it will also perform a low level rescan to pick up -other devices. This low level rescan may wake devices from low -power states and may cause the OS to re\-enumerate them. -Use this option when a device is plugged in and not discovered in -a normal scan. -.br -NOTE: A low\-level rescan may not be available on all interfaces or -all OSs. The low\-level rescan is not guaranteed to find additional -devices in the system when the device is unable to come to a ready state. -.HP -\fB\-\-SATInfo\fR -.IP -Displays SATA device information on any interface -using both SCSI Inquiry / VPD / Log reported data -(translated according to SAT) and the ATA Identify / Log -reported data. -.HP -\fB\-\-testUnitReady\fR -.IP -Issues a SCSI Test Unit Ready command and displays the -status. If the drive is not ready, the sense key, asc, -ascq, and fru will be displayed and a human readable -translation from the SPC spec will be displayed if one -is available. -.TP -\fB\-\-activateFW\fR +Updating firmware: +openSeaChest_Firmware \fB\-d\fR /dev/sg? \fB\-\-downloadFW\fR file.bin +Updating firmware with deferred download and activating: +openSeaChest_Firmware \fB\-d\fR /dev/sg? \fB\-\-downloadFW\fR file.bin \fB\-\-downloadMode\fR deferred \fB\-\-activateFW\fR +Updating firmware and specifying a firmware slot (NVMe) +openSeaChest_Firmware \fB\-d\fR /dev/sg? \fB\-\-downloadFW\fR file.bin \fB\-\-downloadMode\fR deferred .IP -Use this option to issue the command to activate code that was -sent to the drive using a deferred download command. This will -immediately activate the new code on the drive. -You can use this along with a \fB\-\-downloadFW\fR & \fB\-\-downloadMode\fR to -automatically issue the activate command after the download has -completed. -.HP -\fB\-\-calculateFileHash\fR [file] ++ .IP -Use this option to calculate the hash of a file. -The following hashes are computed and shown on the -screen: -.br -MD5 SHA1 SHA2_224 SHA2_256 SHA2_384 SHA2_512 -.TP -\fB\-\-downloadFW\fR firmware_filename -.IP -Download firmware to a Seagate storage product. Use only -Seagate authorized firmware data files which are designated for -the specific model drive. Improper use of this option may harm -a device and or its data. You may specify the path if the -firmware data file is in a different location. This option will -use segmented download by default. Use the -\fB\-\-downloadMode\fR option to specify a different download mode. -.TP -\fB\-\-downloadMode\fR [ full | segmented | deferred ] -.IP -Use this option along with the \fB\-\-downloadFW\fR option -to set the firmware download mode. -Supported Modes: -.IP -full \- performs a download in one large transfer to the device. -.br -segmented \- downloads the firmware in multiple -segments to the device. (Most compatible) -.br -deferred \- performs a segmented download to the -device, but does not activate the new -firmware until a powercycle or activate -command is sent. -.TP -\fB\-\-firmwareSlot\fR/\-\-fwBufferID slot# -.IP -Use this option to specify a firmware slot (NVMe) or a buffer ID (SCSI) -along with the \fB\-\-downloadMode\fR (SCSI) or \fB\-\-activateFW\fR (NVMe & SCSI) options. -If this option is not used, a value of zero will be used instead, -which means the drive will automatically select the slot number. -.TP -\fB\-\-fwdlSegSize\fR [segment size in 512B blocks] -.IP -Use this option to specify a segment size in 512B blocks -to use for a segmented or deferred download. This option -will not affect an immediate download (full buffer at once). -The default segment size used is 64. Larger segment sizes -may be faster, however they may also be incompatible with -controllers or drivers in the system. Smaller values are -more likely to be compatible, but also slower. -Use this option if the default used by the tool is not -working correctly for firmware updates. -.HP -\fB\-\-fwdlInfo\fR +openSeaChest_Firmware \fB\-d\fR /dev/sg? \fB\-\-activateFW\fR \fB\-\-firmwareSlot\fR 2 +.PP +Return codes +============ .IP -Use this option to show the firmware download support -information for a drive. +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +\fB\-\-\-openSeaChest_Firmware\fR specific exit codes\-\-\- +32 = Firmware Download Complete +33 = Deferred Firmware Download Complete +34 = Deferred Code Activated +35 = No Drive or Firmware match found +36 = Model number matched, but Firmware mismatched +37 = Firmware File Hash Error +38 = Firmware Already up to date +39 = Firmware Match Found for update +40 = Firmware Match Found for update \- deferred update supported +Anything else = unknown error .PP Utility Options -.br =============== .HP \fB\-\-echoCommandLine\fR @@ -203,20 +83,23 @@ Using this option will force the current drive to be treated as a ATA drive. Only ATA commands will be used to talk to the drive. .TP -\fB\-\-forceATADMA\fR (SATA Only) +\fB\-\-forceATADMA\fR +(SATA Only) .IP Using this option will force the tool to issue SAT commands to ATA device using the protocol set to DMA whenever possible (on DMA commands). This option can be combined with \fB\-\-forceATA\fR .TP -\fB\-\-forceATAPIO\fR (SATA Only) +\fB\-\-forceATAPIO\fR +(SATA Only) .IP Using this option will force the tool to issue PIO commands to ATA device when possible. This option can be combined with \fB\-\-forceATA\fR .TP -\fB\-\-forceATAUDMA\fR (SATA Only) +\fB\-\-forceATAUDMA\fR +(SATA Only) .IP Using this option will force the tool to issue SAT commands to ATA device using the protocol set to UDMA @@ -252,6 +135,11 @@ firmware revision. This option will only do an exact match. This option should be used to skip performing an update if a drive already has this firmware revision loaded. .HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP \fB\-\-onlyFW\fR [firmware revision] .IP Use this option to run on all drives matching the provided @@ -267,168 +155,201 @@ provided Run openSeaChest_Firmware in quiet mode. This is the same as \fB\-v\fR 0 or \fB\-\-verbose\fR 0 .HP -\fB\-\-sat12byte\fR -.IP -This forces the lower layer code to issue SAT spec -ATA Pass\-through 12 byte commands when possible instead -of 16 byte commands. By default, 16 byte commands are -always used for ATA Pass\-through. -.HP \fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] .IP Show verbose information. Verbosity levels are: -.br 0 \- quiet -.br 1 \- default -.br 2 \- command descriptions -.br 3 \- command descriptions and values -.br 4 \- command descriptions, values, and data buffers -.br Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 .HP \fB\-V\fR, \fB\-\-version\fR .IP Show openSeaChest_Firmware version and copyright information & exit .PP -Return codes -.br -============ +Utility Arguments +================= +.HP +\fB\-d\fR, \fB\-\-device\fR deviceHandle .IP -Generic/Common exit codes -.br -0 = No Error Found -.br -1 = Error in command line options -.br -2 = Invalid Device Handle or Missing Device Handle -.br -3 = Operation Failure -.br -4 = Operation not supported -.br -5 = Operation Aborted -.br -6 = File Path Not Found -.br -7 = Cannot Open File -.br -8 = File Already Exists -.br -\fB\-\-\-openSeaChest_Firmware\fR specific exit codes\-\-\- -.br -32 = Firmware Download Complete -.br -33 = Deferred Firmware Download Complete -.br -34 = Deferred Code Activated -.br -35 = No Drive or Firmware match found -.br -36 = Model number matched, but Firmware mismatched -.br -37 = Firmware File Hash Error -.br -38 = Firmware Already up to date -.br -39 = Firmware Match Found for update -.br -40 = Firmware Match Found for update \- deferred update supported -.br -Anything else = unknown error -.PP +Use this option with most commands to specify the device +handle on which to perform an operation. Example: /dev/sg? +.HP +\fB\-F\fR, \fB\-\-scanFlags\fR [option list] +.IP +Use this option to control the output from scan with the +options listed below. Multiple options can be combined. +.TP +ata \- show only ATA (SATA) devices +usb \- show only USB devices +scsi \- show only SCSI (SAS) devices +nvme \- show only NVMe devices +interfaceATA \- show devices on an ATA interface +interfaceUSB \- show devices on a USB interface +interfaceSCSI \- show devices on a SCSI or SAS interface +interfaceNVME = show devices on an NVMe interface +sd \- show sd device handles +sgtosd \- show the sd and sg device handle mapping +.HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP +\fB\-S\fR, \fB\-\-Scan\fR +.IP +This option is the same as \fB\-\-scan\fR or \fB\-s\fR, +however it will also perform a low level rescan to pick up +other devices. This low level rescan may wake devices from low +power states and may cause the OS to re\-enumerate them. +Use this option when a device is plugged in and not discovered in +a normal scan. +NOTE: A low\-level rescan may not be available on all interfaces or +all OSs. The low\-level rescan is not guaranteed to find additional +devices in the system when the device is unable to come to a ready state. +.HP +\fB\-\-SATInfo\fR +.IP +Displays SATA device information on any interface +using both SCSI Inquiry / VPD / Log reported data +(translated according to SAT) and the ATA Identify / Log +reported data. +.HP +\fB\-\-testUnitReady\fR +.IP +Issues a SCSI Test Unit Ready command and displays the +status. If the drive is not ready, the sense key, asc, +ascq, and fru will be displayed and a human readable +translation from the SPC spec will be displayed if one +is available. +.HP +\fB\-\-activateFW\fR +.IP +Use this option to issue the command to activate code that was +sent to the drive using a deferred download command. This will +immediately activate the new code on the drive. +You can use this along with a \fB\-\-downloadFW\fR & \fB\-\-downloadMode\fR to +automatically issue the activate command after the download has +completed. +.TP +WARNING: Firmware activation may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-downloadFW\fR [firmware_filename] +.IP +Download firmware to a Seagate storage product. Use only +device manufacturer authorized firmware data files which are designated +for the specific model drive. Improper use of this option may +harm a device and or its data. You may specify the path (without +spaces) if the firmware data file is in a different location. +This option will use segmented download by default. Use the +\fB\-\-downloadMode\fR option to specify a different download mode. +.TP +WARNING: Firmware updates may affect all LUNs/namespaces +for devices with multiple logical units or namespaces. +.HP +\fB\-\-downloadMode\fR [ full | segmented | deferred ] +.IP +Use this option along with the \fB\-\-downloadFW\fR option +to set the firmware download mode. +Supported Modes: +.TP +full \- performs a download in one large +transfer to the device. +.TP +segmented \- downloads the firmware in multiple +segments to the device. (Most compatible) +.TP +deferred \- performs a segmented download to the +device, but does not activate the new +firmware until a powercycle or activate +command is sent. +.TP +WARNING: Firmware Updates may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-firmwareSlot\fR/\-\-fwBufferID slot# +.IP +Use this option to specify a firmware slot (NVMe) or a buffer ID (SCSI) +along with the \fB\-\-downloadMode\fR (SCSI) or \fB\-\-activateFW\fR (NVMe & SCSI) options. +If this option is not used, a value of zero will be used instead, +which means the drive will automatically select the slot number. +.HP +\fB\-\-fwdlInfo\fR +.IP +Use this option to show the firmware download support +information for a drive. +.HP +\fB\-\-showLockedRegions\fR +.IP +This option should only be used when performing firmware +updates on legacy products. What this does is it ignores +a failing error code from the OS on the final segment of a +firmware update, but this update is actually successful. +This is needed to workaround hardware or firmware limitations +that were present in some old products. +.HP +\fB\-\-fwdlSegSize\fR [segment size in 512B blocks] +.IP +Use this option to specify a segment size in 512B blocks +to use for a segmented or deferred download. This option +will not affect an immediate download (full buffer at once). +The default segment size used is 64. Larger segment sizes +may be faster, however they may also be incompatible with +controllers or drivers in the system. Smaller values are +more likely to be compatible, but also slower. +Use this option if the default used by the tool is not +working correctly for firmware updates. +.TP +\fB\-\-switchFW\fR +(NVMe Only) +.IP +Use this option to switch to a different firmware slot on an +NVMe drive. You must specify a slot with the \fB\-\-firmwareSlot\fR option +or this will fail. The specified slot must already have a +valid firmware image in it as well. +.TP +WARNING: Switching firmware may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.IP +openSeaChest_Firmware \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Firmware Version: 3.1.5\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:47:31 2022 User: tyler .PP -.br -========================================================================================== -.br -openSeaChest_Firmware \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br ========================================================================================== -.br Version Info for openSeaChest_Firmware: .IP -Utility Version: 2.6.0 -.br -opensea\-common Version: 1.18.0 -.br -opensea\-transport Version: 1.19.2 -.br -opensea\-operations Version: 1.23.0 -.br -Build Date: Feb 28 2019 -.br +Utility Version: 3.1.5 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 Compiled Architecture: X86_64 -.br Detected Endianness: Little Endian -.br Compiler Used: GCC -.br -Compiler Version: 4.4.7 -.br +Compiler Version: 11.2.0 Operating System Type: Linux -.br -Operating System Version: 4.14.10\-0 -.br -Operating System Name: TinyCoreLinux 9.0 -.br -Edition: JBOD, NVMe -.br -RAID Support: none - - -.SH "REPORTING BUGS" -Please report bugs/suggestions to seaboard at seagate dot com. Include the output of -\fB\-\--version\fR information in the email. See the user guide section 'General Usage -Hints' for information about saving output to a log file. - -.SH COPYRIGHT -Copyright \(co 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -BINARIES and SOURCE CODE files of the openSeaChest open source project have -been made available to you under the Mozilla Public License 2.0 (MPL). Mozilla -is the custodian of the Mozilla Public License ("MPL"), an open source/free -software license. -.br -https://www.mozilla.org/en-US/MPL/ -.br -You -can run -the command option \fB\-\--license\fR to display the agreement and acknowledgements of various open -source tools and projects used with SeaChest Utilities. -.PP -This software uses open source packages obtained with permission from the -relevant parties. For a complete list of open source components, sources and -licenses, please see our Linux USB Boot Maker Utility FAQ for additional -information. -.PP -SeaChest Utilities use libraries from the opensea source code projects. These -projects are maintained at http://github.com/seagate. -The libraries in use are opensea-common, opensea-transport and -opensea-operations. These libraries are available under the Mozilla Public -License 2.0. - - -.SH WEB SITE -There are web pages discussing this software at -.br -https://github.com/Seagate/openSeaChest +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS .SH "SEE ALSO" -.B openSeaChest_Basics, openSeaChest_Configure, openSeaChest_Erase, openSeaChest_Firmware, openSeaChest_Format, openSeaChest_GenericTests, openSeaChest_Info, openSeaChest_Logs, openSeaChest_PowerControl, openSeaChest_SMART - -The full documentation and version history for +The full documentation for .B openSeaChest_Firmware -is maintained as a simple text file with this name: -.br -.B openSeaChest_Firmware.operations Version: 1.23.0 -The number part of the name will change with each revision. -.br -The command -.IP -.B less /openSeaChest_Firmware..txt +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_Firmware +programs are properly installed at your site, the command +.IP +.B info openSeaChest_Firmware .PP should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_FormatUnit.8 b/docs/man/man8/openSeaChest_FormatUnit.8 new file mode 100644 index 00000000..e072f36c --- /dev/null +++ b/docs/man/man8/openSeaChest_FormatUnit.8 @@ -0,0 +1,608 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_FORMATUNIT "1" "July 2022" "openSeaChest_FormatUnit ==========================================================================================" "User Commands" +.SH NAME +openSeaChest_FormatUnit \- manual page for openSeaChest_FormatUnit ========================================================================================== +.SH DESCRIPTION +========================================================================================== +.IP +openSeaChest_Format \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Format Version: 2.4.0\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:47:47 2022 User: tyler +.PP +========================================================================================== +Usage +===== +.IP +openSeaChest_Format [\-d ] {arguments} {options} +.PP +Examples +======== +.IP +openSeaChest_Format \fB\-\-scan\fR +openSeaChest_Format \fB\-d\fR /dev/sg? \fB\-i\fR +.PP +Return codes +============ +.IP +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error +.PP +Utility Options +=============== +.HP +\fB\-\-echoCommandLine\fR +.IP +Echo the command line entered into the utility on the screen. +.HP +\fB\-\-enableLegacyUSBPassthrough\fR +.IP +Only use this option on old USB or IEEE1394 (Firewire) +products that do not otherwise work with the tool. +This option will enable a trial and error method that +attempts sending various ATA Identify commands through +vendor specific means. Because of this, certain products +that may respond in unintended ways since they may interpret +these commands differently than the bridge chip the command +was designed for. +.HP +\fB\-\-force\fR +.IP +Use the \fB\-\-force\fR option to attempt to override and force a specific +operation on a drive in case it is returning "Not supported" +messages. This can be used to override some checks for command or +feature support. Be aware that sending unsupported commands may +result in command failures, and in some circumstances, it may also +cause indeterminate behavior of a device. +Do not use this command unless you are certain that a device supports +the command or feature you are attempting to use. +This option is not guaranteed to make things work or fix issues. This +option is not available to override every support check or other +incompatibility check in the software. +.HP +\fB\-\-forceATA\fR +.IP +Using this option will force the current drive to +be treated as a ATA drive. Only ATA commands will +be used to talk to the drive. +.TP +\fB\-\-forceATADMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to DMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAPIO\fR +(SATA Only) +.IP +Using this option will force the tool to issue PIO +commands to ATA device when possible. This option can +be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAUDMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to UDMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.HP +\fB\-\-forceSCSI\fR +.IP +Using this option will force the current drive to +be treated as a SCSI drive. Only SCSI commands will +be used to talk to the drive. +.HP +\fB\-h\fR, \fB\-\-help\fR +.IP +Show utility options and example usage (this output you see now) +Please report bugs/suggestions to seaboard@seagate.com. +Include the output of \fB\-\-version\fR information in the email. +.HP +\fB\-\-license\fR +.IP +Display the Seagate End User License Agreement (EULA). +.HP +\fB\-\-modelMatch\fR [model Number] +.IP +Use this option to run on all drives matching the provided +model number. This option will provide a closest match although +an exact match is preferred. Ex: ST500 will match ST500LM0001 +.HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP +\fB\-\-onlyFW\fR [firmware revision] +.IP +Use this option to run on all drives matching the provided +firmware revision. This option will only do an exact match. +.HP +\fB\-\-onlySeagate\fR +.IP +Use this option to match only Seagate drives for the options +provided +.HP +\fB\-q\fR, \fB\-\-quiet\fR +.IP +Run openSeaChest_Format in quiet mode. This is the same as +\fB\-v\fR 0 or \fB\-\-verbose\fR 0 +.HP +\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +.IP +Show verbose information. Verbosity levels are: +0 \- quiet +1 \- default +2 \- command descriptions +3 \- command descriptions and values +4 \- command descriptions, values, and data buffers +Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 +.HP +\fB\-V\fR, \fB\-\-version\fR +.IP +Show openSeaChest_Format version and copyright information & exit +.PP +Utility Arguments +================= +.HP +\fB\-d\fR, \fB\-\-device\fR deviceHandle +.IP +Use this option with most commands to specify the device +handle on which to perform an operation. Example: /dev/sg? +.HP +\fB\-\-displayLBA\fR [LBA] +.IP +This option will read and display the contents of +the specified LBA to the screen. The display format +is hexadecimal with an ASCII translation on the side +(when available). +.HP +\fB\-F\fR, \fB\-\-scanFlags\fR [option list] +.IP +Use this option to control the output from scan with the +options listed below. Multiple options can be combined. +.TP +ata \- show only ATA (SATA) devices +usb \- show only USB devices +scsi \- show only SCSI (SAS) devices +nvme \- show only NVMe devices +interfaceATA \- show devices on an ATA interface +interfaceUSB \- show devices on a USB interface +interfaceSCSI \- show devices on a SCSI or SAS interface +interfaceNVME = show devices on an NVMe interface +sd \- show sd device handles +sgtosd \- show the sd and sg device handle mapping +.HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP +\fB\-\-poll\fR +.IP +Use this option to cause another operation to poll for progress +until it has completed. This argument does not return to the +command prompt and prints ongoing completion percentages (%) +.TP +the final test result. +Full drive procedures will take a +.TP +very long time. +Used with \fB\-\-sanitize\fR, or \fB\-\-writeSame\fR (SATA). +.HP +\fB\-\-progress\fR [format | nvmformat | depop | repop] +.IP +Get the progress for a test that was started quietly without +the polling option (default). You must specify a test you wish to +get progress from. Ex: "\-\-progress dst" or "\-\-progress sanitize" +The progress counts up from 0% to 100%. +.HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP +\fB\-S\fR, \fB\-\-Scan\fR +.IP +This option is the same as \fB\-\-scan\fR or \fB\-s\fR, +however it will also perform a low level rescan to pick up +other devices. This low level rescan may wake devices from low +power states and may cause the OS to re\-enumerate them. +Use this option when a device is plugged in and not discovered in +a normal scan. +NOTE: A low\-level rescan may not be available on all interfaces or +all OSs. The low\-level rescan is not guaranteed to find additional +devices in the system when the device is unable to come to a ready state. +.HP +\fB\-\-SATInfo\fR +.IP +Displays SATA device information on any interface +using both SCSI Inquiry / VPD / Log reported data +(translated according to SAT) and the ATA Identify / Log +reported data. +.HP +\fB\-\-testUnitReady\fR +.IP +Issues a SCSI Test Unit Ready command and displays the +status. If the drive is not ready, the sense key, asc, +ascq, and fru will be displayed and a human readable +translation from the SPC spec will be displayed if one +is available. +.HP +\fB\-\-depopulateMaxLBA\fR [requested MaxLBA] +.IP +Use this option to specify a new maximum LBA when +removing (depopulating) a physical storage element. +This is optional. If this is not specified, the device +will determine the new maximum LBA. +NOTE: If you specify a maximum LBA the device does not +support, it will not start the depopulation. +.HP +\fB\-\-showPhysicalElementStatus\fR +.IP +Use this option to see the status/health of +the storage elements inside a drive. +Use the element # shown with the \fB\-\-removePhysicalElement\fR +option to remove that storage element from use. +This option can also be used to see if a depopulation +is still in progress or if it has completed. +.HP +\fB\-\-showSupportedFormats\fR +.IP +This option will show the supported formats of a device. +These can be used to change the sector size or +used with a format operation. On SAS, this is the +supported block lengths and protection types VPD page. (SBC4 +and later) On SATA, this is the sector configuration log. (ACS4 +and later) If the device does not report supported sector +sizes, please consult your product manual. +.TP +WARNING: Customer unique firmware may have specific requirements that +restrict sector sizes on some products. It may not be possible to format/ +fast format to common sizes like 4K or 512B due to these customer requirements. +.IP +SAS Only: +========= +\fB\-\-showFormatStatusLog\fR (SAS Only) +.IP +Use this option to view the SCSI format status log. +Note: This log is only valid after a successful format +unit operation. +.PP +Data Destructive Commands +========================= +.HP +\fB\-\-pattern\fR [repeat:asciinospaces | random | increment:startValue | file:filename] +.IP +Use this option with overwrite, sanitize, and format unit +operations to write a specific pattern to a range of LBAs +or the whole drive. +.IP +* repeat \- without spaces, enter an ASCII text string or a +hexadecimal string terminated by a lower case "h". This +pattern will be repeated until it fills the logical size +of the LBA. i.e. helloword or FFFFFFFFh +Note: A hexadecimal pattern will be interpreted as a 32bit +unsigned integer. 4 hex bytes (8 characters) must be given +for a hex value to be used. Ex: 1F037AC8h or 0000FFFFh +* random \- the entire logical sector size will be filled with +random bytes.This pattern will be written to all LBAs in the +desired range. +* increment \- enter the starting numerical value. Starting with +this value, each byte will be written with 1 + previous value. +* file \- user supplied file name to use for a pattern. The file +will be truncated or padded with zeros to the logical sector size +Note 1: Each file will be interpreted as a binary file. +Note 2: A path must also be provided if the file is not in the +.IP +local directory. +.TP +Note 3: Sanitize Overwrite on SATA only supports a 32bit pattern. +The file option will get truncated to a 32bit pattern for +SATA products. +.HP +\fB\-\-removePhysicalElement\fR [element #] +.IP +Use this option to remove a storage element +from use on a drive. When this is done, the +drive will erase all user data and lower the +capacity to a new point where the drive is still +usable without the provided element #. +Use the \fB\-\-showPhysicalElementStatus\fR option to see the status +of the depopulation operation. +.TP +WARNING: Removing a physical element affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-repopulateElements\fR +.IP +Use this option to repopulate any physical storage +elements that have been removed from use. +A full disk overwrite is necessary before +the drive is usable. +.HP +\fB\-\-setSectorSize\fR [new sector size] +.IP +This option is only available for drives that support sector +size changes. On SATA Drives, the set sector configuration +command must be supported. On SAS Drives, fast format must +be supported. A format unit can be used instead of this +option to perform a long format and adjust sector size. +Use the \fB\-\-showSupportedFormats\fR option to see the sector +sizes the drive reports supporting. If this option +doesn't list anything, please consult your product manual. +This option should be used to quickly change between 5xxe and +4xxx sector sizes. Using this option to change from 512 to 520 +or similar is not recommended at this time due to limited drive +support +.TP +WARNING: Set sector size may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.TP +WARNING (SATA): Do not interrupt this operation once it has started or +it may cause the drive to become unusable. Stop all possible background +activity that would attempt to communicate with the device while this +operation is in progress +.TP +WARNING: It is not recommended to do this on USB as not +all USB adapters can handle a 4k sector size. +.TP +WARNING: Disable any out\-of\-band management systems/services/daemons +before using this option. Interruptions can be caused by these +and may prevent completion of a sector size change. +.IP +SATA Only: +========== +\fB\-\-seagateQuickFormat\fR (SATA Only) (Seagate Only) +.IP +This option performs a quick format of a Seagate SATA drive. +The purpose of this is to help bring a drive out of a bad state +when an operation such as Fast Format (\fB\-\-setSectorSize\fR) or +depopulation/repopulation is interrupted by the host when the drive +was still processing the command. Once this command completes, these +operations can be retried if the quick format completes successfully. +Be aware that this option may erase data and the drive may not be +completely readable until is has been written again. It is strongly +recommended that a full overwrite is performed after this is complete +to ensure the drive operates without and further errors during reads. +This operation may succeed or it may fail depending on the state of the +drive when this is run. +NOTE: You can use the \fB\-\-force\fR option to attempt to force this command if +.TP +the tool returns "Not supported" errors, but it may still fail +to issue the command. +.TP +NOTE: For SAS products, retrying a fast format is the best thing to try, +but if that does not work, a full format may be required. +.IP +SAS Only: +========= +\fB\-\-disableCertification\fR +.IP +Use this option to disable the certification operation +when performing a format unit operation. +.HP +\fB\-\-disablePrimaryList\fR +.IP +Use this option to disable using the primary defect list +when performing a format unit operation. +.HP +\fB\-\-discardGList\fR +.IP +Use this option to discard the existing grown defect list +when performing a format unit operation. (set complete list bit) +.HP +\fB\-\-disableImmediateResponse\fR +.IP +Use this option to disable the immediate response bit in +a format unit operation. +Note: This mode may take a long time to complete. +.HP +\fB\-\-formatMaxLBA\fR [ new max LBA ] +.IP +Use this option to specify a new Max LBA for a drive during a +format unit operation. This may speed up a format unit if +formatting to test something, or also desiring to reduce a drive's +capacity while formatting. +NOTE: Not all devices support reducing capacity during a format. +Some may ignore this parameter and format the full medium anyways. +This is not guaranteed to stick or reduce formatting time. +.HP +\fB\-\-protectionIntervalExponent\fR [ exponent value ] +.IP +Use this option to specify the protection interval exponent +for protection types 2 & 3. This option is ignored for all +other protection types. +.HP +\fB\-\-protectionType\fR [ 0 | 1 | 2 | 3 ] +.IP +Use this option to specify the protection type to format the +medium with. +Note: Not all devices support protection types. +.HP +\fB\-\-fastFormat\fR [fast format mode] (SAS Only) (SBC4 required) +.IP +Use this option with the \fB\-\-formatUnit\fR option +to run a fast format. +Available fast format modes: +.TP +0 \- This is a standard format unit command. All logical +blocks will be overwritten. This command will take a +very long time +.TP +1 \- This is a fast format unit command keeping existing +data in physical sector. This option can be used to +quickly change the the logical sector size between +5xxe and 4xxx. The media may be readable, but data +may be unspecified or may return errors on read access +according to it's error processing algorithms. +.TP +2 \- This is a fast format unit command that can change the +logical sector size quickly. Media may or may not be +read accessible until a write has been performed to +the media. +.TP +WARNING: Disable any out\-of\-band management systems/services/daemons +before using this option. Interruptions can be caused by these +and may prevent completion of a fast format operation. +.TP +\fB\-\-formatUnit\fR [current | new sector size] +(SAS Only) +.IP +This option will start a format unit operation on a SAS drive +Use "current" to perform a format unit operation with the +Sector size currently being used, otherwise enter a new sector +size to use upon format completion. This command will erase all +data on the drive. Combine this option with \fB\-\-poll\fR to poll +for progress until the format is complete. +.TP +WARNING: Format Unit may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.TP +WARNING: Customer unique firmware may have specific requirements that +restrict sector sizes on some products. It may not be possible to format/ +fast format to common sizes like 4K or 512B due to these customer requirements. +.HP +\fB\-\-securityInitialize\fR +.IP +Use this option to set the security initialize bit in the +initialization pattern for a format unit command. +SBC recommends migrating to sanitize to overwrite previously +reallocated sectors. +Note: Not all products support this option. +.HP +\fB\-\-stopOnListError\fR +.IP +Use this option to set the stop format bit in a format unit. +If the device cannot locate or access an existing primary or +grown defect list, the format will stop and return with an error. +.IP +NVMe Only: +========= +\fB\-\-nvmFmtMetadataSet\fR [ xlba | separate ] (NVMe Only) +.IP +Use this option to specify how metadata is transmitted to +the host system. +Options: +.IP +xlba \- metadata is transferred as part of the logical block data +separate \- metadata is transferred as a separate buffer +.IP +Note: Not all devices support specifying this. +If this option is not provided, the NVM format will +reuse the current setting. +.TP +\fB\-\-nvmFmtMS\fR [ # of bytes for metadata ] +(NVMe Only) +.IP +This option is used to specify the length of metadata +with a requested logical block size. The device must +support the combination of logical block size and metadata size +or the format will be rejected by the device. +.TP +\fB\-\-nvmFmtNSID\fR [all | current] +(NVMe Only) +.IP +This option changes the NSID used when issuing the NVM format +command. This can be used to control formatting an entire +device or a specific namespace if the device supports specifying +specific namespaces for a format command. Not all devices support +this behavior. This has no effect on devices that do not support +targeting a specific namespace and will format the entire device +If this option is not given, the format will be issued to all +namespaces by default. +.TP +\fB\-\-nvmFmtPI\fR [ 0 | 1 | 2 | 3 ] +(NVMe Only) +.IP +Use this option to specify the protection type to format the +medium with. +Note: Not all devices support protection types. +If this option is not provided, the NVM format will +reuse the current setting. +.HP +\fB\-\-nvmFmtPIL\fR [ beginning | end ] (NVMe Only) +.IP +Use this option to specify the location protection +information in an NVM device's metadata. +Note: Not all devices support specifying this. +If this option is not provided, the NVM format will +reuse the current setting. +.HP +\fB\-\-nvmFmtSecErase\fR [none | user | crypto] (NVMe Only) +.IP +This option is used to specify the type of erase to perform +during an NVM format operation. All user data will be inaccessible +upon completion of an NVM format, no matter the erase requested. +Options: +.IP +none \- no secure erase requested (previous data will not be accessible) +user \- requests all user data is erased by the device. +crypto \- requests a cryptographic erase of all user data. Note: this mode +.IP +is not supported on all devices. +.TP +\fB\-\-nvmFormat\fR [current | format # | sector size] +(NVMe Only) +.IP +This option is used to start an NVM format operation. +Use "current" to perform a format operation with the +Sector size currently being used. +If a value between 0 and 15 is given, then that will issue +the NVM format with the specified sector size/metadata size for +that supported format on the drive. +Values 512 and higher will be treated as a new sector size +to switch to and will be matched to an appropriate lba format +supported by the drive. +This command will erase all data on the drive. +Combine this option with\-\-poll to poll +for progress until the format is complete. +.IP +openSeaChest_Format \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Format Version: 2.4.0\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:47:47 2022 User: tyler +.PP +========================================================================================== +Version Info for openSeaChest_Format: +.IP +Utility Version: 2.4.0 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 +Compiled Architecture: X86_64 +Detected Endianness: Little Endian +Compiler Used: GCC +Compiler Version: 11.2.0 +Operating System Type: Linux +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS +.SH "SEE ALSO" +The full documentation for +.B openSeaChest_FormatUnit +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_FormatUnit +programs are properly installed at your site, the command +.IP +.B info openSeaChest_FormatUnit +.PP +should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_GenericTests.8 b/docs/man/man8/openSeaChest_GenericTests.8 index b85d7eda..67546a1d 100644 --- a/docs/man/man8/openSeaChest_GenericTests.8 +++ b/docs/man/man8/openSeaChest_GenericTests.8 @@ -1,67 +1,161 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4. -.\" Assuming you have the man tool installed, you can read this file directly with -.\" man ./openSeaChest_.8 -.\" System administration man pages are kept in the man8 folder. Use the manpath tool -.\" to determine the location of man pages on your system. Your favorite Linux system -.\" probably has man8 pages stored at: -.\" /usr/local/share/man/man8 -.\" or -.\" /usr/share/man/man8 -.\" -.\" If you want to use them then just copy to one of the above folders and they will -.\" be found. Just type: -.\" man openSeaChest_ -.ad l -.TH OPENSEACHEST_GENERICTESTS "8" "March 2019" "openSeaChest_Utilities" "System Administration Utilities" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_GENERICTESTS "1" "July 2022" "openSeaChest_GenericTests ==========================================================================================" "User Commands" .SH NAME -openSeaChest_GenericTests +openSeaChest_GenericTests \- manual page for openSeaChest_GenericTests ========================================================================================== .SH DESCRIPTION ========================================================================================== -.br -openSeaChest_GenericTests \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -openSeaChest_GenericTests Version: 1.8.0\-1_19_2 X86_64 -.br -Build Date: Feb 28 2019 -.br -========================================================================================== +.IP +openSeaChest_GenericTests \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_GenericTests Version: 2.0.4\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:48:01 2022 User: tyler .PP +========================================================================================== Usage -.br ===== .IP openSeaChest_GenericTests [\-d ] {arguments} {options} .PP Examples -.br ======== .IP openSeaChest_GenericTests \fB\-\-scan\fR -.br openSeaChest_GenericTests \fB\-d\fR /dev/sg? \fB\-i\fR .PP -Utility Arguments -.br -================= +Return codes +============ +.IP +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error +.PP +Utility Options +=============== .HP -\fB\-s\fR, \fB\-\-scan\fR +\fB\-\-echoCommandLine\fR .IP -Scan the system and list all storage devices with logical -/dev/sg? assignments. Shows model, serial and firmware -numbers. If your device is not listed on a scan immediately -after booting, then wait 10 seconds and run it again. +Echo the command line entered into the utility on the screen. +.HP +\fB\-\-enableLegacyUSBPassthrough\fR +.IP +Only use this option on old USB or IEEE1394 (Firewire) +products that do not otherwise work with the tool. +This option will enable a trial and error method that +attempts sending various ATA Identify commands through +vendor specific means. Because of this, certain products +that may respond in unintended ways since they may interpret +these commands differently than the bridge chip the command +was designed for. +.HP +\fB\-\-forceATA\fR +.IP +Using this option will force the current drive to +be treated as a ATA drive. Only ATA commands will +be used to talk to the drive. +.TP +\fB\-\-forceATADMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to DMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAPIO\fR +(SATA Only) +.IP +Using this option will force the tool to issue PIO +commands to ATA device when possible. This option can +be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAUDMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to UDMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.HP +\fB\-\-forceSCSI\fR +.IP +Using this option will force the current drive to +be treated as a SCSI drive. Only SCSI commands will +be used to talk to the drive. +.HP +\fB\-h\fR, \fB\-\-help\fR +.IP +Show utility options and example usage (this output you see now) +Please report bugs/suggestions to seaboard@seagate.com. +Include the output of \fB\-\-version\fR information in the email. +.HP +\fB\-\-hideLBACounter\fR +.IP +Use this option to suppress the output from +options that show LBA counters without turning +off all output to the screen. +.HP +\fB\-\-license\fR +.IP +Display the Seagate End User License Agreement (EULA). +.HP +\fB\-\-modelMatch\fR [model Number] +.IP +Use this option to run on all drives matching the provided +model number. This option will provide a closest match although +an exact match is preferred. Ex: ST500 will match ST500LM0001 +.HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP +\fB\-\-onlyFW\fR [firmware revision] +.IP +Use this option to run on all drives matching the provided +firmware revision. This option will only do an exact match. +.HP +\fB\-\-onlySeagate\fR +.IP +Use this option to match only Seagate drives for the options +provided +.HP +\fB\-q\fR, \fB\-\-quiet\fR +.IP +Run openSeaChest_GenericTests in quiet mode. This is the same as +\fB\-v\fR 0 or \fB\-\-verbose\fR 0 +.HP +\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +.IP +Show verbose information. Verbosity levels are: +0 \- quiet +1 \- default +2 \- command descriptions +3 \- command descriptions and values +4 \- command descriptions, values, and data buffers +Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 +.HP +\fB\-V\fR, \fB\-\-version\fR +.IP +Show openSeaChest_GenericTests version and copyright information & exit +.PP +Utility Arguments +================= .HP \fB\-d\fR, \fB\-\-device\fR deviceHandle .IP Use this option with most commands to specify the device handle on which to perform an operation. Example: /dev/sg? .HP -\fB\-i\fR, \fB\-\-deviceInfo\fR -.IP -Show information and features for the storage device -.HP \fB\-\-displayLBA\fR [LBA] .IP This option will read and display the contents of @@ -73,23 +167,29 @@ is hexadecimal with an ASCII translation on the side .IP Use this option to control the output from scan with the options listed below. Multiple options can be combined. -.IP +.TP ata \- show only ATA (SATA) devices -.br usb \- show only USB devices -.br scsi \- show only SCSI (SAS) devices -.br +nvme \- show only NVMe devices interfaceATA \- show devices on an ATA interface -.br interfaceUSB \- show devices on a USB interface -.br interfaceSCSI \- show devices on a SCSI or SAS interface -.br +interfaceNVME = show devices on an NVMe interface sd \- show sd device handles -.br sgtosd \- show the sd and sg device handle mapping .HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP \fB\-S\fR, \fB\-\-Scan\fR .IP This option is the same as \fB\-\-scan\fR or \fB\-s\fR, @@ -98,7 +198,6 @@ other devices. This low level rescan may wake devices from low power states and may cause the OS to re\-enumerate them. Use this option when a device is plugged in and not discovered in a normal scan. -.br NOTE: A low\-level rescan may not be available on all interfaces or all OSs. The low\-level rescan is not guaranteed to find additional devices in the system when the device is unable to come to a ready state. @@ -144,20 +243,21 @@ Use this option to perform a generic read/write/verify test at the specified diameter of the drive. Use the time options to specify a time based test or the \fB\-\-diameterTestRange\fR option for a range based test. -.IP +.TP O \- outer diameter -.br M \- middle diameter -.br I \- inner diameter .IP The different diameters can be combined or run individually. -.br Ex1: \fB\-\-diameterTest\fR OMI -.br Ex2: \fB\-\-diameterTest\fR O -.br Ex3: \fB\-\-diameterTest\fR MI +.IP +Inner, middle, and outer diameter tests refer to the physical +beginning and ending sections of a hard disk drive with +rotating magnetic media.In the case of SSD devices, +these tests refer to the logical beginning and ending +sections of the solid state drive. .HP \fB\-\-diameterTestRange\fR [range] .IP @@ -165,12 +265,9 @@ Use this option with the \fB\-\-diameterTest\fR option to perform a range based test. If a range is specified without any units, it is assumed to be an LBA count. -.br Valid units are KB, KiB, MB, MiB, GB, GiB, TB and TiB. -.br Ex1: "\-\-diameterTestRange 1234567" for an LBA count -.br Ex2: "\-\-diameterTestRange 2GB" for a 2GB range. .HP \fB\-\-errorLimit\fR [limit in number of LBAs] @@ -178,21 +275,21 @@ Ex2: "\-\-diameterTestRange 2GB" for a 2GB range. Use this option to specify a different error limit for a user generic or long generic read test or DST and Clean. This must be a number of +.IP logical LBAs to have errors. If a drive has multiple logical sectors per physical sector, this number will +.IP be adjusted for you to reflect the drive architecture. .HP -\fB\-\-genericMode\fR [ read | write | verify ] +\fB\-\-genericMode\fR [ read | write | verify ] .IP This options allows selection of the type of commands to use while performing a generic test. The modes supported are listed below: -.IP +.TP read \- performs a generic test using read commands -.br write \- performs a generic test using write commands -.br verify \- performs a generic test using verify commands .HP \fB\-\-hours\fR [hours] @@ -211,11 +308,9 @@ test stop on the first read error that occurs. The default error limit is 50 x number of logical sectors per physical sector. Example error limits are as follows: -.IP +.TP 512L/512P: error limit = 50 -.br 4096L/4096P: error limit = 50 -.br 512L/4096P: error limit = 400 (50 * 8) .HP \fB\-\-minutes\fR [minutes] @@ -244,6 +339,11 @@ drive for 1% of the LBAs, then a read at the Inner Diameter of the drive for 1% of the LBAs, and lastly a random read of 5000 LBAs. This test will stop on the first read error that occurs. +Inner and outer diameter tests refer to the physical +beginning and ending sections of a hard disk drive with +rotating magnetic media.In the case of SSD devices, +these tests refer to the logical beginning and ending +sections of the solid state drive. .HP \fB\-\-stopOnError\fR .IP @@ -253,12 +353,19 @@ stop on the first error found. \fB\-\-twoMinuteGeneric\fR .IP This option will run a 2 minute generic read test on +.PP a specified device. There are 3 components to this test. A read at the Outer Diameter (OD) of the drive for 45 +.IP seconds, then a read at the Inner Diameter of the drive for 45 seconds, and lastly a random read test for 30 seconds. This test will stop on the first read error that occurs. +Inner and outer diameter tests refer to the physical +beginning and ending sections of a hard disk drive with +rotating magnetic media.In the case of SSD devices, +these tests refer to the logical beginning and ending +sections of the solid state drive. .HP \fB\-\-userGenericStart\fR [LBA] .IP @@ -275,251 +382,51 @@ generic read test. See the \fB\-\-userGenericStart\fR help for additional information about using the User Generic Read tests. .PP -Utility Options -.br -=============== +Data Destructive Commands +========================= .HP -\fB\-\-echoCommandLine\fR -.IP -Echo the command line entered into the utility on the screen. -.HP -\fB\-\-enableLegacyUSBPassthrough\fR -.IP -Only use this option on old USB or IEEE1394 (Firewire) -products that do not otherwise work with the tool. -This option will enable a trial and error method that -attempts sending various ATA Identify commands through -vendor specific means. Because of this, certain products -that may respond in unintended ways since they may interpret -these commands differently than the bridge chip the command -was designed for. -.HP -\fB\-\-forceATA\fR -.IP -Using this option will force the current drive to -be treated as a ATA drive. Only ATA commands will -be used to talk to the drive. -.TP -\fB\-\-forceATADMA\fR (SATA Only) -.IP -Using this option will force the tool to issue SAT -commands to ATA device using the protocol set to DMA -whenever possible (on DMA commands). -This option can be combined with \fB\-\-forceATA\fR -.TP -\fB\-\-forceATAPIO\fR (SATA Only) -.IP -Using this option will force the tool to issue PIO -commands to ATA device when possible. This option can -be combined with \fB\-\-forceATA\fR -.TP -\fB\-\-forceATAUDMA\fR (SATA Only) -.IP -Using this option will force the tool to issue SAT -commands to ATA device using the protocol set to UDMA -whenever possible (on DMA commands). -This option can be combined with \fB\-\-forceATA\fR -.HP -\fB\-\-forceSCSI\fR -.IP -Using this option will force the current drive to -be treated as a SCSI drive. Only SCSI commands will -be used to talk to the drive. -.HP -\fB\-h\fR, \fB\-\-help\fR -.IP -Show utility options and example usage (this output you see now) -Please report bugs/suggestions to seaboard@seagate.com. -Include the output of \fB\-\-version\fR information in the email. -.HP -\fB\-\-hideLBACounter\fR -.IP -Use this option to suppress the output from -options that show LBA counters without turning -off all output to the screen. -.HP -\fB\-\-license\fR -.IP -Display the Seagate End User License Agreement (EULA). -.HP -\fB\-\-modelMatch\fR [model Number] -.IP -Use this option to run on all drives matching the provided -model number. This option will provide a closest match although -an exact match is preferred. Ex: ST500 will match ST500LM0001 -.HP -\fB\-\-onlyFW\fR [firmware revision] -.IP -Use this option to run on all drives matching the provided -firmware revision. This option will only do an exact match. -.HP -\fB\-\-onlySeagate\fR -.IP -Use this option to match only Seagate drives for the options -provided -.HP -\fB\-q\fR, \fB\-\-quiet\fR -.IP -Run openSeaChest_GenericTests in quiet mode. This is the same as -\fB\-v\fR 0 or \fB\-\-verbose\fR 0 -.HP -\fB\-\-sat12byte\fR -.IP -This forces the lower layer code to issue SAT spec -ATA Pass\-through 12 byte commands when possible instead -of 16 byte commands. By default, 16 byte commands are -always used for ATA Pass\-through. -.HP -\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] -.IP -Show verbose information. Verbosity levels are: -.br -0 \- quiet -.br -1 \- default -.br -2 \- command descriptions -.br -3 \- command descriptions and values -.br -4 \- command descriptions, values, and data buffers -.br -Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 -.HP -\fB\-V\fR, \fB\-\-version\fR -.IP -Show openSeaChest_GenericTests version and copyright information & exit -.PP -Data Destructive Commands (Seagate only) -.br -======================================== -.TP \fB\-\-repairAtEnd\fR .IP Use this option to repair any bad sectors found during a long or user generic read test at the end of the test. -.TP +.HP \fB\-\-repairOnFly\fR .IP Use this option to repair any bad sectors found during a long or user generic read test as they are found. -.PP -Return codes -.br -============ .IP -Generic/Common exit codes -.br -0 = No Error Found -.br -1 = Error in command line options -.br -2 = Invalid Device Handle or Missing Device Handle -.br -3 = Operation Failure -.br -4 = Operation not supported -.br -5 = Operation Aborted -.br -6 = File Path Not Found -.br -7 = Cannot Open File -.br -8 = File Already Exists -.br -Anything else = unknown error +openSeaChest_GenericTests \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_GenericTests Version: 2.0.4\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:48:01 2022 User: tyler .PP -.PP -.br -========================================================================================== -.br -openSeaChest_GenericTests \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br ========================================================================================== -.br Version Info for openSeaChest_GenericTests: .IP -Utility Version: 1.8.0 -.br -opensea\-common Version: 1.18.0 -.br -opensea\-transport Version: 1.19.2 -.br -opensea\-operations Version: 1.23.0 -.br -Build Date: Feb 28 2019 -.br +Utility Version: 2.0.4 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 Compiled Architecture: X86_64 -.br Detected Endianness: Little Endian -.br Compiler Used: GCC -.br -Compiler Version: 4.4.7 -.br +Compiler Version: 11.2.0 Operating System Type: Linux -.br -Operating System Version: 4.14.10\-0 -.br -Operating System Name: TinyCoreLinux 9.0 -.br -Edition: JBOD, NVMe -.br -RAID Support: none - -.SH "REPORTING BUGS" -Please report bugs/suggestions to seaboard at seagate dot com. Include the output of -\fB\-\--version\fR information in the email. See the user guide section 'General Usage -Hints' for information about saving output to a log file. - -.SH COPYRIGHT -Copyright \(co 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -BINARIES and SOURCE CODE files of the openSeaChest open source project have -been made available to you under the Mozilla Public License 2.0 (MPL). Mozilla -is the custodian of the Mozilla Public License ("MPL"), an open source/free -software license. -.br -https://www.mozilla.org/en-US/MPL/ -.br -You -can run -the command option \fB\-\--license\fR to display the agreement and acknowledgements of various open -source tools and projects used with SeaChest Utilities. -.PP -This software uses open source packages obtained with permission from the -relevant parties. For a complete list of open source components, sources and -licenses, please see our Linux USB Boot Maker Utility FAQ for additional -information. -.PP -SeaChest Utilities use libraries from the opensea source code projects. These -projects are maintained at http://github.com/seagate. -The libraries in use are opensea-common, opensea-transport and -opensea-operations. These libraries are available under the Mozilla Public -License 2.0. - - -.SH WEB SITE -There are web pages discussing this software at -.br -https://github.com/Seagate/openSeaChest +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS .SH "SEE ALSO" -.B openSeaChest_Basics, openSeaChest_Configure, openSeaChest_Erase, openSeaChest_Firmware, openSeaChest_Format, openSeaChest_GenericTests, openSeaChest_Info, openSeaChest_Logs, openSeaChest_PowerControl, openSeaChest_SMART - -The full documentation and version history for +The full documentation for .B openSeaChest_GenericTests -is maintained as a simple text file with this name: -.br -.B openSeaChest_GenericTests..txt -The number part of the name will change with each revision. -.br -The command -.IP -.B less /openSeaChest_GenericTests..txt +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_GenericTests +programs are properly installed at your site, the command +.IP +.B info openSeaChest_GenericTests .PP should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_Info.8 b/docs/man/man8/openSeaChest_Info.8 index 37f60cc8..40cbb6e0 100644 --- a/docs/man/man8/openSeaChest_Info.8 +++ b/docs/man/man8/openSeaChest_Info.8 @@ -1,181 +1,45 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4. -.\" Assuming you have the man tool installed, you can read this file directly with -.\" man ./openSeaChest_.8 -.\" System administration man pages are kept in the man8 folder. Use the manpath tool -.\" to determine the location of man pages on your system. Your favorite Linux system -.\" probably has man8 pages stored at: -.\" /usr/local/share/man/man8 -.\" or -.\" /usr/share/man/man8 -.\" -.\" If you want to use them then just copy to one of the above folders and they will -.\" be found. Just type: -.\" man openSeaChest_ -.ad l -.TH OPENSEACHEST_INFO "8" "March 2019" "openSeaChest_Utilities" "System Administration Utilities" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_INFO "1" "July 2022" "openSeaChest_Info ==========================================================================================" "User Commands" .SH NAME -openSeaChest_Info +openSeaChest_Info \- manual page for openSeaChest_Info ========================================================================================== .SH DESCRIPTION ========================================================================================== -.br -openSeaChest_Info \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -openSeaChest_Info Version: 1.5.0\-1_19_2 X86_64 -.br -Build Date: Feb 28 2019 -.br -========================================================================================== +.IP +openSeaChest_Info \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Info Version: 2.1.2\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:48:11 2022 User: tyler .PP +========================================================================================== Usage -.br ===== .IP openSeaChest_Info [\-d ] {arguments} {options} .PP Examples -.br ======== .IP openSeaChest_Info \fB\-\-scan\fR -.br openSeaChest_Info \fB\-d\fR /dev/sg? \fB\-i\fR .PP -Utility Arguments -.br -================= -.HP -\fB\-s\fR, \fB\-\-scan\fR -.IP -Scan the system and list all storage devices with logical -/dev/sg? assignments. Shows model, serial and firmware -numbers. If your device is not listed on a scan immediately -after booting, then wait 10 seconds and run it again. -.HP -\fB\-d\fR, \fB\-\-device\fR deviceHandle -.IP -Use this option with most commands to specify the device -handle on which to perform an operation. Example: /dev/sg? -.HP -\fB\-i\fR, \fB\-\-deviceInfo\fR -.IP -Show information and features for the storage device -.HP -\fB\-F\fR, \fB\-\-scanFlags\fR [option list] -.IP -Use this option to control the output from scan with the -options listed below. Multiple options can be combined. -.IP -ata \- show only ATA (SATA) devices -.br -usb \- show only USB devices -.br -scsi \- show only SCSI (SAS) devices -.br -interfaceATA \- show devices on an ATA interface -.br -interfaceUSB \- show devices on a USB interface -.br -interfaceSCSI \- show devices on a SCSI or SAS interface -.br -sd \- show sd device handles -.br -sgtosd \- show the sd and sg device handle mapping -.HP -\fB\-S\fR, \fB\-\-Scan\fR -.IP -This option is the same as \fB\-\-scan\fR or \fB\-s\fR, -however it will also perform a low level rescan to pick up -other devices. This low level rescan may wake devices from low -power states and may cause the OS to re\-enumerate them. -Use this option when a device is plugged in and not discovered in -a normal scan. -.br -NOTE: A low\-level rescan may not be available on all interfaces or -all OSs. The low\-level rescan is not guaranteed to find additional -devices in the system when the device is unable to come to a ready state. -.HP -\fB\-\-SATInfo\fR -.IP -Displays SATA device information on any interface -using both SCSI Inquiry / VPD / Log reported data -(translated according to SAT) and the ATA Identify / Log -reported data. -.HP -\fB\-\-testUnitReady\fR -.IP -Issues a SCSI Test Unit Ready command and displays the -status. If the drive is not ready, the sense key, asc, -ascq, and fru will be displayed and a human readable -translation from the SPC spec will be displayed if one -is available. -.HP -\fB\-\-deviceStatistics\fR -.IP -Use this option to display the device statistics reported -by the device. On SATA, this uses the Device Statistics -log, and the notifications log (if DSN feature is supported) -to display these statistics. On SAS, various log pages are -read to collect a bunch of reported parameter information. -.PP -SATA Only: -.br -========= -.br -\fB\-\-smartAttributes\fR [raw | analyzed] (SATA Only) -.IP -The drive will display its list of supported SMART attributes. -Some attributes names are commonly standard and most others are -vendor unique. In either case, the attribute thresholds are -always vendor unique. Most attributes are informational and not -used to determine a warranty return. Use the \fB\-\-smartCheck\fR -command to determine if one of the warranty attributes has been -tripped. Seagate Support does not help to analyze SMART -attributes. -.PP -SAS Only: -.br -========= -.br -\fB\-\-defectFormat\fR [ # | shortBlock | longBlock | xbfi | xchs | bfi | chs ] (SAS Only) -.IP -This option set the format of the defects to output. -Not all drives will support all defect modes! -SSDs will only support block modes! -.IP -Arguments: (name | #) -.IP -shortBlock | 0 \- show the defects in short block address mode (drives < 32bit LBA) -.br -xbfi | 1 \- show the defects in extended bytes from index mode.br -.br -xchs | 2 \- show the defects in extended physical cylinder\-head\-sector mode -.br -longBlock | 3 \- show the defects in long block address mode (drives > 32bit LBA) -.br -bfi | 4 \- show the defects in bytes from index mode -.br -chs | 5 \- show the defects in physical cylinder\-head\-sector mode -.TP -\fB\-\-showSCSIDefects\fR [ p | g | pg ] (SAS Only) -.IP -This option will display the SCSI defects on the screen. -The arguments to this will tell whether to get the grown, -primary, or primary and grown defects from the drive. -Use the \fB\-\-defectFormat\fR option to specify the mode to display the defects. -If no mode is specified, physical cylinder\-head\-sector mode is assumed -.br -Arguments: -.IP -p \- use this option to pull and display the primary (factory) defects -.br -g \- use this option to pull and display the grown (reallocated) defects +Return codes +============ .IP -The above options can be combined to pull and display both defect lists. +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error .PP Utility Options -.br =============== .HP \fB\-\-echoCommandLine\fR @@ -199,20 +63,23 @@ Using this option will force the current drive to be treated as a ATA drive. Only ATA commands will be used to talk to the drive. .TP -\fB\-\-forceATADMA\fR (SATA Only) +\fB\-\-forceATADMA\fR +(SATA Only) .IP Using this option will force the tool to issue SAT commands to ATA device using the protocol set to DMA whenever possible (on DMA commands). This option can be combined with \fB\-\-forceATA\fR .TP -\fB\-\-forceATAPIO\fR (SATA Only) +\fB\-\-forceATAPIO\fR +(SATA Only) .IP Using this option will force the tool to issue PIO commands to ATA device when possible. This option can be combined with \fB\-\-forceATA\fR .TP -\fB\-\-forceATAUDMA\fR (SATA Only) +\fB\-\-forceATAUDMA\fR +(SATA Only) .IP Using this option will force the tool to issue SAT commands to ATA device using the protocol set to UDMA @@ -241,6 +108,11 @@ Use this option to run on all drives matching the provided model number. This option will provide a closest match although an exact match is preferred. Ex: ST500 will match ST500LM0001 .HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP \fB\-\-onlyFW\fR [firmware revision] .IP Use this option to run on all drives matching the provided @@ -256,146 +128,183 @@ provided Run openSeaChest_Info in quiet mode. This is the same as \fB\-v\fR 0 or \fB\-\-verbose\fR 0 .HP -\fB\-\-sat12byte\fR -.IP -This forces the lower layer code to issue SAT spec -ATA Pass\-through 12 byte commands when possible instead -of 16 byte commands. By default, 16 byte commands are -always used for ATA Pass\-through. -.HP \fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] .IP Show verbose information. Verbosity levels are: -.br 0 \- quiet -.br 1 \- default -.br 2 \- command descriptions -.br 3 \- command descriptions and values -.br 4 \- command descriptions, values, and data buffers -.br Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 .HP \fB\-V\fR, \fB\-\-version\fR .IP Show openSeaChest_Info version and copyright information & exit .PP -Return codes -.br -============ +Utility Arguments +================= +.HP +\fB\-d\fR, \fB\-\-device\fR deviceHandle .IP -Generic/Common exit codes -.br -0 = No Error Found -.br -1 = Error in command line options -.br -2 = Invalid Device Handle or Missing Device Handle -.br -3 = Operation Failure -.br -4 = Operation not supported -.br -5 = Operation Aborted -.br -6 = File Path Not Found -.br -7 = Cannot Open File -.br -8 = File Already Exists -.br -Anything else = unknown error -.PP +Use this option with most commands to specify the device +handle on which to perform an operation. Example: /dev/sg? +.HP +\fB\-F\fR, \fB\-\-scanFlags\fR [option list] +.IP +Use this option to control the output from scan with the +options listed below. Multiple options can be combined. +.TP +ata \- show only ATA (SATA) devices +usb \- show only USB devices +scsi \- show only SCSI (SAS) devices +nvme \- show only NVMe devices +interfaceATA \- show devices on an ATA interface +interfaceUSB \- show devices on a USB interface +interfaceSCSI \- show devices on a SCSI or SAS interface +interfaceNVME = show devices on an NVMe interface +sd \- show sd device handles +sgtosd \- show the sd and sg device handle mapping +.HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP +\fB\-S\fR, \fB\-\-Scan\fR +.IP +This option is the same as \fB\-\-scan\fR or \fB\-s\fR, +however it will also perform a low level rescan to pick up +other devices. This low level rescan may wake devices from low +power states and may cause the OS to re\-enumerate them. +Use this option when a device is plugged in and not discovered in +a normal scan. +NOTE: A low\-level rescan may not be available on all interfaces or +all OSs. The low\-level rescan is not guaranteed to find additional +devices in the system when the device is unable to come to a ready state. +.HP +\fB\-\-SATInfo\fR +.IP +Displays SATA device information on any interface +using both SCSI Inquiry / VPD / Log reported data +(translated according to SAT) and the ATA Identify / Log +reported data. +.HP +\fB\-\-testUnitReady\fR +.IP +Issues a SCSI Test Unit Ready command and displays the +status. If the drive is not ready, the sense key, asc, +ascq, and fru will be displayed and a human readable +translation from the SPC spec will be displayed if one +is available. +.HP +\fB\-\-deviceStatistics\fR +.IP +Use this option to display the device statistics reported +by the device. On SATA, this uses the Device Statistics +log, and the notifications log (if DSN feature is supported) +to display these statistics. On SAS, various log pages are +read to collect a bunch of reported parameter information. +.HP +\fB\-\-showConcurrentRanges\fR +.IP +Use this option to display the concurrent positioning ranges +supported by a device. Concurrent positioning ranges are used +to inform which actuator is used for a given range in LBA space. +.IP +SATA Only: +========= +\fB\-\-smartAttributes\fR [raw | hybrid | analyzed] (SATA Only) +.IP +The drive will display its list of supported SMART attributes. +Some attributes names are commonly standard and most others are +vendor unique. In either case, the attribute thresholds are +always vendor unique. Most attributes are informational and not +used to determine a warranty return. Use the \fB\-\-smartCheck\fR +command to determine if one of the warranty attributes has been +tripped. Seagate Support does not help to analyze SMART +attributes. +Output modes: +.IP +raw \- All hex output for those that need every single bit. +hybrid \- classic table view with some interpretation of some +.TP +fields. Partial raw interpretation, but not all drive +and firmware combinations are supported. +.TP +analyzed \- a full breakdown of all parts of each individual +attribute's data. Full raw data interpretation only +available on select devices. +.IP +NOTE: Migration to device statistics is recommended. +.IP +SAS Only: +========= +\fB\-\-defectFormat\fR [ # | shortBlock | longBlock | xbfi | xchs | bfi | chs ] (SAS Only) +.IP +This option set the format of the defects to output. +Not all drives will support all defect modes! +SSDs will only support block modes! +Arguments: (name | #) +.IP +shortBlock | 0 \- show the defects in short block address mode (drives < 32bit LBA) +xbfi | 1 \- show the defects in extended bytes from index mode +xchs | 2 \- show the defects in extended physical cylinder\-head\-sector mode +longBlock | 3 \- show the defects in long block address mode (drives > 32bit LBA) +bfi | 4 \- show the defects in bytes from index mode +chs | 5 \- show the defects in physical cylinder\-head\-sector mode +.TP +\fB\-\-showSCSIDefects\fR [ p | g | pg ] +(SAS Only) +.IP +This option will display the SCSI defects on the screen. +The arguments to this will tell whether to get the grown, +primary, or primary and grown defects from the drive. +Use the \fB\-\-defectFormat\fR option to specify the mode to display the defects. +If no mode is specified, physical cylinder\-head\-sector mode is assumed +Arguments: +.IP +p \- use this option to pull and display the primary (factory) defects +g \- use this option to pull and display the grown (reallocated) defects +.IP +The above options can be combined to pull and display both defect lists. +.IP +openSeaChest_Info \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Info Version: 2.1.2\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:48:11 2022 User: tyler .PP -.br -========================================================================================== -.br -openSeaChest_Info \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br ========================================================================================== -.br Version Info for openSeaChest_Info: .IP -Utility Version: 1.5.0 -.br -opensea\-common Version: 1.18.0 -.br -opensea\-transport Version: 1.19.2 -.br -opensea\-operations Version: 1.23.0 -.br -Build Date: Feb 28 2019 -.br +Utility Version: 2.1.2 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 Compiled Architecture: X86_64 -.br Detected Endianness: Little Endian -.br Compiler Used: GCC -.br -Compiler Version: 4.4.7 -.br +Compiler Version: 11.2.0 Operating System Type: Linux -.br -Operating System Version: 4.14.10\-0 -.br -Operating System Name: TinyCoreLinux 9.0 -.br -Edition: JBOD, NVMe -.br -RAID Support: none -.SH "REPORTING BUGS" -Please report bugs/suggestions to seaboard at seagate dot com. Include the output of -\fB\-\--version\fR information in the email. See the user guide section 'General Usage -Hints' for information about saving output to a log file. - -.SH COPYRIGHT -Copyright \(co 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -BINARIES and SOURCE CODE files of the openSeaChest open source project have -been made available to you under the Mozilla Public License 2.0 (MPL). Mozilla -is the custodian of the Mozilla Public License ("MPL"), an open source/free -software license. -.br -https://www.mozilla.org/en-US/MPL/ -.br -You -can run -the command option \fB\-\--license\fR to display the agreement and acknowledgements of various open -source tools and projects used with SeaChest Utilities. -.PP -This software uses open source packages obtained with permission from the -relevant parties. For a complete list of open source components, sources and -licenses, please see our Linux USB Boot Maker Utility FAQ for additional -information. -.PP -SeaChest Utilities use libraries from the opensea source code projects. These -projects are maintained at http://github.com/seagate. -The libraries in use are opensea-common, opensea-transport and -opensea-operations. These libraries are available under the Mozilla Public -License 2.0.License 2.0. - - -.SH WEB SITE -There are web pages discussing this software at -.br -https://github.com/Seagate/openSeaChest +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS .SH "SEE ALSO" -.B openSeaChest_Basics, openSeaChest_Configure, openSeaChest_Erase, openSeaChest_Firmware, openSeaChest_Format, openSeaChest_GenericTests, openSeaChest_Info, openSeaChest_Logs, openSeaChest_PowerControl, openSeaChest_SMART - -The full documentation and version history for +The full documentation for .B openSeaChest_Info -is maintained as a simple text file with this name: -.br -.B openSeaChest_Info..txt -The number part of the name will change with each revision. -.br -The command -.IP -.B less /openSeaChest_Info..txt +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_Info +programs are properly installed at your site, the command +.IP +.B info openSeaChest_Info .PP should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_Logs.8 b/docs/man/man8/openSeaChest_Logs.8 index 9d3154d8..0cb0d8c8 100644 --- a/docs/man/man8/openSeaChest_Logs.8 +++ b/docs/man/man8/openSeaChest_Logs.8 @@ -1,260 +1,46 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4. -.\" Assuming you have the man tool installed, you can read this file directly with -.\" man ./openSeaChest_.8 -.\" System administration man pages are kept in the man8 folder. Use the manpath tool -.\" to determine the location of man pages on your system. Your favorite Linux system -.\" probably has man8 pages stored at: -.\" /usr/local/share/man/man8 -.\" or -.\" /usr/share/man/man8 -.\" -.\" If you want to use them then just copy to one of the above folders and they will -.\" be found. Just type: -.\" man openSeaChest_ -.ad l -.TH OPENSEACHEST_LOGS "8" "March 2019" "openSeaChest_Utilities" "System Administration Utilities" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_LOGS "1" "July 2022" "openSeaChest_Logs ==========================================================================================" "User Commands" .SH NAME -openSeaChest_Logs +openSeaChest_Logs \- manual page for openSeaChest_Logs ========================================================================================== .SH DESCRIPTION ========================================================================================== -.br -openSeaChest_Logs \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -openSeaChest_Logs Version: 1.1.0\-1_19_2 X86_64 -.br -Build Date: Feb 28 2019 -.br -========================================================================================== +.IP +openSeaChest_Logs \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Logs Version: 2.0.3\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:48:21 2022 User: tyler .PP +========================================================================================== Usage -.br ===== .IP openSeaChest_Logs [\-d ] {arguments} {options} .PP Examples -.br ======== .IP openSeaChest_Logs \fB\-\-scan\fR -.br openSeaChest_Logs \fB\-d\fR /dev/sg? \fB\-i\fR -.br -openSeaChest_Logs \fB\-d\fR /dev/sg1 \fB\-\-farm\fR \fB\-\-outputPath\fR logs - +openSeaChest_Logs \fB\-d\fR /dev/sg? \fB\-\-farm\fR \fB\-\-outputPath\fR logs .PP -Utility Arguments -.br -================= -.HP -\fB\-s\fR, \fB\-\-scan\fR -.IP -Scan the system and list all storage devices with logical -/dev/sg? assignments. Shows model, serial and firmware -numbers. If your device is not listed on a scan immediately -after booting, then wait 10 seconds and run it again. -.HP -\fB\-d\fR, \fB\-\-device\fR deviceHandle -.IP -Use this option with most commands to specify the device -handle on which to perform an operation. Example: /dev/sg? -.HP -\fB\-i\fR, \fB\-\-deviceInfo\fR -.IP -Show information and features for the storage device -.HP -\fB\-F\fR, \fB\-\-scanFlags\fR [option list] -.IP -Use this option to control the output from scan with the -options listed below. Multiple options can be combined. -.IP -ata \- show only ATA (SATA) devices -.br -usb \- show only USB devices -.br -scsi \- show only SCSI (SAS) devices -.br -interfaceATA \- show devices on an ATA interface -.br -interfaceUSB \- show devices on a USB interface -.br -interfaceSCSI \- show devices on a SCSI or SAS interface -.br -sd \- show sd device handles -.br -sgtosd \- show the sd and sg device handle mapping -.HP -\fB\-S\fR, \fB\-\-Scan\fR -.IP -This option is the same as \fB\-\-scan\fR or \fB\-s\fR, -however it will also perform a low level rescan to pick up -other devices. This low level rescan may wake devices from low -power states and may cause the OS to re\-enumerate them. -Use this option when a device is plugged in and not discovered in -a normal scan. -.br -NOTE: A low\-level rescan may not be available on all interfaces or -all OSs. The low\-level rescan is not guaranteed to find additional -devices in the system when the device is unable to come to a ready state. -.HP -\fB\-\-SATInfo\fR -.IP -Displays SATA device information on any interface -using both SCSI Inquiry / VPD / Log reported data -(translated according to SAT) and the ATA Identify / Log -reported data. -.HP -\fB\-\-testUnitReady\fR -.IP -Issues a SCSI Test Unit Ready command and displays the -status. If the drive is not ready, the sense key, asc, -ascq, and fru will be displayed and a human readable -translation from the SPC spec will be displayed if one -is available. - -.HP -\fB\-\-farm\fR -.IP -Pull the Seagate Field Accessible Reliability Metrics (FARM) -Log from the specified drive. Saves the binary logs to the -current directory as _FARM_.bin -.HP -\fB\-\-listErrorHistoryIDs\fR -.IP -Displays a list of all supported error history buffer IDs -supported by the device. -.HP -\fB\-\-listSupportedLogs\fR -.IP -Displays a list of all supported generic logs by this device -type. -.HP -\fB\-\-logMode [raw | bin]\fR -.IP -Sets the mode to pull the log. Use this option with --pullLog -to set the desired mode. -.br -raw - Pulls log & prints it to the screen as stdout. (default) -.br -bin - Pulls log & saves it to a timestamped binary file. Saves -the binary logs to the current directory as -_GENERIC_LOG-_.bin -.HP -\fB\-\-logTransferLength [lengthunits (no space)]\fR -.IP -Use this option to specify the data transfer length for a log -transfer. Larger transfer sizes may speed up log retrieval at -the loss of compatibility. The following units are allowed for -specifying a transfer length: -.br -KiB - length in kibibytes (val * 1024) -.br -MiB - length in mebibytes (val * 1048576) -.br -KB - length in kilobytes (val * 1000) (SAS only) -.br -MB - length in megabytes (val * 1000000) (SAS only) -.br -BLOCKS or SECTORS - used to specify a transfer length - in device in 512Byte blocks/sectors -.br -Warning: Specifying a large size may result in failures due to -OS, driver, or HBA/bridge specific limitations. -.IP -Examples: --logTransferLength 4KiB -.br - --logTransferLength 1MiB -.br - --logTransferLength 1BLOCKS -.br - --logTransferLength 12288SECTORS -.IP -Notes: ATA drives must be given a value in 512B increments. If ---logTransferLength is omitted then various default lengths are -automatically set by the program depending on the type of log. -.HP -\fB\-\-pullErrorHistoryID [Buffer ID]\fR -.IP -Pulls specific error history buffer ID from the device [Buffer -ID] is required argument & can be passed as an decimal or hex -value. -.IP -WARNING: Vendor Unique Logs pulled using this option may not -be valid due to unknown vendor unique bits in ATA/SCSI/NVMe -etc. command fields. -.HP -\fB\-\-pullLog [Log Number]\fR -.IP -Pulls the Host Specific generic log number from the device. [Log -Number] is a required argument and can be a decimal or hex -value. For example, --pullLog FE, --pullLog FEh, --pullLog -0xFE, --pullLog 254, or --pullLog 0254. Possible Log Numbers -are returned by the --listSupportedLogs command. Also see ---logMode below. -.IP -Example: --pullLog 0x02 --logMode bin -.br -gives the file _GENERIC_LOG-2_.bin -.IP -WARNING: Vendor Unique Logs pulled using this option may not -be valid due to unknown vendor unique bits in ATA/SCSI/NVMe -etc. command fields. -.HP -\fB\-\-selfTestLog\fR -.IP -This option will pull the Self Test Results Log (DST) from a -device. On ATA drives, this will pull the extended SMART self -tests result log when it is supported by the device. Saves the -binary logs to the current directory as -_Ext_SMART_Self_Test_Results_.bin - -.PP -SATA Only: -.br -========= -.br -.HP -\fB\-\-identifyDataLog (SATA only)\fR -.IP -This option will pull the Identify Device Data Log from an ATA -drive. Saves the binary logs to the current directory as -_Identify_Device_Data_Log_.bin -.HP -\fB\-\-SATAPhyCntLog (SATA only)\fR -.IP -This option will pull the SATA Phy Event Counters Log from a -SATA drive. Saves the binary logs to the current directory as -_SATA_Phy_Event_Counters_.bin - -.PP -SAS Only: -.br -======== -.br -.HP -\fB\-\-infoExceptionsLog (SAS only)\fR -.IP -This option will pull the SCSI Informational Exceptions log -page from a SCSI device. Saves the binary logs to the current -directory as _Informational_Exceptions_.bin -.HP -\fB\-\-pullSubpage [Subpage Number] (SAS Only)\fR -.IP -Use this option with the --pullLog option to specify a log -subpage to pull. Use this for SCSI Logs. [Subpage Number] can -be passed as an decimal or hex value. +Return codes +============ .IP -WARNING: Vendor Unique Logs pulled using this option may not -be valid due to unknown vendor unique bits in ATA/SCSI/NVMe -etc. command fields. - +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error .PP Utility Options -.br =============== .HP \fB\-\-echoCommandLine\fR @@ -278,20 +64,23 @@ Using this option will force the current drive to be treated as a ATA drive. Only ATA commands will be used to talk to the drive. .TP -\fB\-\-forceATADMA\fR (SATA Only) +\fB\-\-forceATADMA\fR +(SATA Only) .IP Using this option will force the tool to issue SAT commands to ATA device using the protocol set to DMA whenever possible (on DMA commands). This option can be combined with \fB\-\-forceATA\fR .TP -\fB\-\-forceATAPIO\fR (SATA Only) +\fB\-\-forceATAPIO\fR +(SATA Only) .IP Using this option will force the tool to issue PIO commands to ATA device when possible. This option can be combined with \fB\-\-forceATA\fR .TP -\fB\-\-forceATAUDMA\fR (SATA Only) +\fB\-\-forceATAUDMA\fR +(SATA Only) .IP Using this option will force the tool to issue SAT commands to ATA device using the protocol set to UDMA @@ -320,6 +109,11 @@ Use this option to run on all drives matching the provided model number. This option will provide a closest match although an exact match is preferred. Ex: ST500 will match ST500LM0001 .HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP \fB\-\-onlyFW\fR [firmware revision] .IP Use this option to run on all drives matching the provided @@ -330,151 +124,237 @@ firmware revision. This option will only do an exact match. Use this option to match only Seagate drives for the options provided .HP +\fB\-\-outputPath\fR [folder] +.IP +To set a path to the directory/folder where all logs should be created. +The directory/folder must already exist with write permissions +If this option is not used, logs are created in the current working folder +.HP \fB\-q\fR, \fB\-\-quiet\fR .IP Run openSeaChest_Logs in quiet mode. This is the same as \fB\-v\fR 0 or \fB\-\-verbose\fR 0 .HP -\fB\-\-sat12byte\fR -.IP -This forces the lower layer code to issue SAT spec -ATA Pass\-through 12 byte commands when possible instead -of 16 byte commands. By default, 16 byte commands are -always used for ATA Pass\-through. -.HP \fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] .IP Show verbose information. Verbosity levels are: -.br 0 \- quiet -.br 1 \- default -.br 2 \- command descriptions -.br 3 \- command descriptions and values -.br 4 \- command descriptions, values, and data buffers -.br Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 .HP \fB\-V\fR, \fB\-\-version\fR .IP Show openSeaChest_Logs version and copyright information & exit .PP -Return codes -.br -============ +Utility Arguments +================= +.HP +\fB\-d\fR, \fB\-\-device\fR deviceHandle .IP -Generic/Common exit codes -.br -0 = No Error Found -.br -1 = Error in command line options -.br -2 = Invalid Device Handle or Missing Device Handle -.br -3 = Operation Failure -.br -4 = Operation not supported -.br -5 = Operation Aborted -.br -6 = File Path Not Found -.br -7 = Cannot Open File -.br -8 = File Already Exists -.br -Anything else = unknown error -.PP +Use this option with most commands to specify the device +handle on which to perform an operation. Example: /dev/sg? +.HP +\fB\-F\fR, \fB\-\-scanFlags\fR [option list] +.IP +Use this option to control the output from scan with the +options listed below. Multiple options can be combined. +.TP +ata \- show only ATA (SATA) devices +usb \- show only USB devices +scsi \- show only SCSI (SAS) devices +nvme \- show only NVMe devices +interfaceATA \- show devices on an ATA interface +interfaceUSB \- show devices on a USB interface +interfaceSCSI \- show devices on a SCSI or SAS interface +interfaceNVME = show devices on an NVMe interface +sd \- show sd device handles +sgtosd \- show the sd and sg device handle mapping +.HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP +\fB\-S\fR, \fB\-\-Scan\fR +.IP +This option is the same as \fB\-\-scan\fR or \fB\-s\fR, +however it will also perform a low level rescan to pick up +other devices. This low level rescan may wake devices from low +power states and may cause the OS to re\-enumerate them. +Use this option when a device is plugged in and not discovered in +a normal scan. +NOTE: A low\-level rescan may not be available on all interfaces or +all OSs. The low\-level rescan is not guaranteed to find additional +devices in the system when the device is unable to come to a ready state. +.HP +\fB\-\-SATInfo\fR +.IP +Displays SATA device information on any interface +using both SCSI Inquiry / VPD / Log reported data +(translated according to SAT) and the ATA Identify / Log +reported data. +.HP +\fB\-\-testUnitReady\fR +.IP +Issues a SCSI Test Unit Ready command and displays the +status. If the drive is not ready, the sense key, asc, +ascq, and fru will be displayed and a human readable +translation from the SPC spec will be displayed if one +is available. +.HP +\fB\-\-deviceStatisticsLog\fR +.IP +This option will pull the Device Statistics Log +from a device. +.HP +\fB\-\-farm\fR +.IP +Pull the Seagate Field Accessible Reliability Metrics (FARM) +Log from the specified drive.Saves the binary logs to the +current directory as FARM.bin +.HP +\fB\-\-listSupportedLogs\fR +.IP +Displays a list of all supported logs by this device type. +.HP +\fB\-\-logMode\fR [mode] +.IP +Sets the mode to pull the log. +Use this option with \fB\-\-pullLog\fR to set the desired mode +.TP +raw \- Pulls log & prints it to the +screen as stdout. (default) +.TP +bin \- Pulls log & saves it to +a timestamped binary file. +.HP +\fB\-\-logTransferLength\fR [length in bytes] +.IP +Use this option to specify the data transfer +length for a log transfer. +Larger transfer sizes may speed up log retrieval at the +loss of compatibility. +The following post fixes are allowed for +specifying a transfer length: +.TP +BLOCKS or SECTORS \- used to specify a transfer length +in device in 512Byte blocks/sectors +.TP +KB \- length in kilobytes (val * 1000) +KiB \- length in kibibytes (val * 1024) +MB \- length in megabytes (val * 1000000) +MiB \- length in mebibytes (val * 1048576) +.IP +ATA drives must be given a value in 512B increments. +Warning: Specifying a large size may result in +failures due to OS, driver, or HBA/bridge specific limitations. +.HP +\fB\-\-pullLog\fR [Log Number] +.IP +Pulls specific log number from the device +[Log Number] is required argument & can be passed +as an decimal or hex value. +WARNING: Vendor Unique Logs pulled using this option +.TP +may not be valid due to unknown vendor unique +bits in ATA/SCSI/NVMe etc. command fields. +.HP +\fB\-\-selfTestLog\fR +.IP +This option will pull the self test results log +from a device. On ATA drives, this will pull the +extended SMART self tests result log when it is +supported by the device. +.IP +SATA Only: +.TP +\fB\-\-identifyDataLog\fR +(SATA only) +.IP +This option will pull the Identify Device data +log from an ATA drive. +.TP +\fB\-\-SATAPhyCntLog\fR +(SATA only) +.IP +This option will pull the SATA Phy Event Counters +log from a SATA drive. +.IP +SAS Only: +.TP +\fB\-\-listErrorHistoryIDs\fR +(SAS Only) +.IP +Displays a list of all supported error history buffer IDs +supported by the device. +.TP +\fB\-\-pullErrorHistoryID\fR [Buffer ID] +(SAS Only) +.IP +Pulls specific error history buffer ID from the device +[Buffer ID] is required argument & can be passed +as an decimal or hex value. +WARNING: Vendor Unique Logs pulled using this option +.TP +may not be valid due to unknown vendor unique +bits in ATA/SCSI/NVMe etc. command fields. +.TP +\fB\-\-infoExceptionsLog\fR +(SAS only) +.IP +This option will pull the SCSI Informational +Exceptions log page from a SCSI device. +.TP +\fB\-\-pullSubpage\fR [Subpage Number] +(SAS Only) +.IP +Use this option with the \fB\-\-pullLog\fR option to specify +a log subpage to pull. Use this for SCSI Logs. +[Subpage Number] can be passed as an decimal or hex value. +WARNING: Vendor Unique Logs pulled using this option +.TP +may not be valid due to unknown vendor unique +bits in ATA/SCSI/NVMe etc. command fields. +.IP +openSeaChest_Logs \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Logs Version: 2.0.3\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:48:21 2022 User: tyler .PP -.br ========================================================================================== -.br -openSeaChest_Logs \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -========================================================================================== -.br Version Info for openSeaChest_Logs: .IP -Utility Version: 1.5.0 -.br -opensea\-common Version: 1.18.0 -.br -opensea\-transport Version: 1.19.2 -.br -opensea\-operations Version: 1.23.0 -.br -Build Date: Feb 28 2019 -.br +Utility Version: 2.0.3 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 Compiled Architecture: X86_64 -.br Detected Endianness: Little Endian -.br Compiler Used: GCC -.br -Compiler Version: 4.4.7 -.br +Compiler Version: 11.2.0 Operating System Type: Linux -.br -Operating System Version: 4.14.10\-0 -.br -Operating System Name: TinyCoreLinux 9.0 -.br -Edition: JBOD, NVMe -.br -RAID Support: none -.SH "REPORTING BUGS" -Please report bugs/suggestions to seaboard at seagate dot com. Include the output of -\fB\-\--version\fR information in the email. See the user guide section 'General Usage -Hints' for information about saving output to a log file. - -.SH COPYRIGHT -Copyright \(co 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -BINARIES and SOURCE CODE files of the openSeaChest open source project have -been made available to you under the Mozilla Public License 2.0 (MPL). Mozilla -is the custodian of the Mozilla Public License ("MPL"), an open source/free -software license. -.br -https://www.mozilla.org/en-US/MPL/ -.br -You -can run -the command option \fB\-\--license\fR to display the agreement and acknowledgements of various open -source tools and projects used with SeaChest Utilities. -.PP -This software uses open source packages obtained with permission from the -relevant parties. For a complete list of open source components, sources and -licenses, please see our Linux USB Boot Maker Utility FAQ for additional -information. -.PP -SeaChest Utilities use libraries from the opensea source code projects. These -projects are maintained at http://github.com/seagate. -The libraries in use are opensea-common, opensea-transport and -opensea-operations. These libraries are available under the Mozilla Public -License 2.0.License 2.0. - - -.SH WEB SITE -There are web pages discussing this software at -.br -https://github.com/Seagate/openSeaChest +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS .SH "SEE ALSO" -.B openSeaChest_Basics, openSeaChest_Configure, openSeaChest_Erase, openSeaChest_Firmware, openSeaChest_Format, openSeaChest_GenericTests, openSeaChest_Info, openSeaChest_Logs, openSeaChest_PowerControl, openSeaChest_SMART - -The full documentation and version history for +The full documentation for +.B openSeaChest_Logs +is maintained as a Texinfo manual. If the +.B info +and .B openSeaChest_Logs -is maintained as a simple text file with this name: -.br -.B openSeaChest_Logs..txt -The number part of the name will change with each revision. -.br -The command -.IP -.B less /openSeaChest_Logs..txt +programs are properly installed at your site, the command +.IP +.B info openSeaChest_Logs .PP should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_NVMe.8 b/docs/man/man8/openSeaChest_NVMe.8 new file mode 100644 index 00000000..b2f5edc7 --- /dev/null +++ b/docs/man/man8/openSeaChest_NVMe.8 @@ -0,0 +1,479 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_NVME "1" "July 2022" "openSeaChest_NVMe ==========================================================================================" "User Commands" +.SH NAME +openSeaChest_NVMe \- manual page for openSeaChest_NVMe ========================================================================================== +.SH DESCRIPTION +========================================================================================== +.IP +openSeaChest_NVMe \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_NVMe Version: 2.0.8\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:48:32 2022 User: tyler +.PP +========================================================================================== +Usage +===== +.IP +openSeaChest_NVMe [\-d ] {arguments} {options} +.PP +Examples +======== +.IP +openSeaChest_NVMe \fB\-\-scan\fR +openSeaChest_NVMe \fB\-d\fR /dev/sg? \fB\-i\fR +.PP +Return codes +============ +.IP +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error +.PP +Utility Options +=============== +.HP +\fB\-\-echoCommandLine\fR +.IP +Echo the command line entered into the utility on the screen. +.HP +\fB\-h\fR, \fB\-\-help\fR +.IP +Show utility options and example usage (this output you see now) +Please report bugs/suggestions to seaboard@seagate.com. +Include the output of \fB\-\-version\fR information in the email. +.HP +\fB\-\-license\fR +.IP +Display the Seagate End User License Agreement (EULA). +.HP +\fB\-\-modelMatch\fR [model Number] +.IP +Use this option to run on all drives matching the provided +model number. This option will provide a closest match although +an exact match is preferred. Ex: ST500 will match ST500LM0001 +.HP +\fB\-\-newFW\fR [firmware revision] +.IP +Use this option to skip drives matching the provided +firmware revision. This option will only do an exact match. +This option should be used to skip performing an update if +a drive already has this firmware revision loaded. +.HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP +\fB\-\-onlyFW\fR [firmware revision] +.IP +Use this option to run on all drives matching the provided +firmware revision. This option will only do an exact match. +.HP +\fB\-\-onlySeagate\fR +.IP +Use this option to match only Seagate drives for the options +provided +.HP +\fB\-q\fR, \fB\-\-quiet\fR +.IP +Run openSeaChest_NVMe in quiet mode. This is the same as +\fB\-v\fR 0 or \fB\-\-verbose\fR 0 +.HP +\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +.IP +Show verbose information. Verbosity levels are: +0 \- quiet +1 \- default +2 \- command descriptions +3 \- command descriptions and values +4 \- command descriptions, values, and data buffers +Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 +.HP +\fB\-V\fR, \fB\-\-version\fR +.IP +Show openSeaChest_NVMe version and copyright information & exit +.PP +Utility Arguments +================= +.HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP +\fB\-F\fR, \fB\-\-scanFlags\fR [option list] +.IP +Use this option to control the output from scan with the +options listed below. Multiple options can be combined. +.TP +ata \- show only ATA (SATA) devices +usb \- show only USB devices +scsi \- show only SCSI (SAS) devices +nvme \- show only NVMe devices +interfaceATA \- show devices on an ATA interface +interfaceUSB \- show devices on a USB interface +interfaceSCSI \- show devices on a SCSI or SAS interface +interfaceNVME = show devices on an NVMe interface +sd \- show sd device handles +sgtosd \- show the sd and sg device handle mapping +.HP +\fB\-d\fR, \fB\-\-device\fR deviceHandle +.IP +Use this option with most commands to specify the device +handle on which to perform an operation. Example: /dev/sg? +.HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP +\fB\-\-testUnitReady\fR +.IP +Issues a SCSI Test Unit Ready command and displays the +status. If the drive is not ready, the sense key, asc, +ascq, and fru will be displayed and a human readable +translation from the SPC spec will be displayed if one +is available. +.HP +\fB\-\-activateFW\fR +.IP +Use this option to issue the command to activate code that was +sent to the drive using a deferred download command. This will +immediately activate the new code on the drive. +You can use this along with a \fB\-\-downloadFW\fR & \fB\-\-downloadMode\fR to +automatically issue the activate command after the download has +completed. +.TP +WARNING: Firmware activation may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-checkPowerMode\fR +.IP +Get the current power mode of a drive. +On SCSI devices, this will only work if the drive has +transitioned from active state to another state. +.TP +\fB\-\-transitionPowerState\fR [new power state] +(NVMe Only) +.IP +Use this option to transition to a specific power state. +HINT: +.IP +Use \fB\-\-deviceInfo\fR to show number of supported states +.HP +\fB\-\-downloadFW\fR [firmware_filename] +.IP +Download firmware to a Seagate storage product. Use only +device manufacturer authorized firmware data files which are designated +for the specific model drive. Improper use of this option may +harm a device and or its data. You may specify the path (without +spaces) if the firmware data file is in a different location. +This option will use segmented download by default. Use the +\fB\-\-downloadMode\fR option to specify a different download mode. +.TP +WARNING: Firmware updates may affect all LUNs/namespaces +for devices with multiple logical units or namespaces. +.HP +\fB\-\-downloadMode\fR [ full | segmented | deferred ] +.IP +Use this option along with the \fB\-\-downloadFW\fR option +to set the firmware download mode. +Supported Modes: +.TP +full \- performs a download in one large +transfer to the device. +.TP +segmented \- downloads the firmware in multiple +segments to the device. (Most compatible) +.TP +deferred \- performs a segmented download to the +device, but does not activate the new +firmware until a powercycle or activate +command is sent. +.TP +WARNING: Firmware Updates may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-firmwareSlot\fR/\-\-fwBufferID slot# +.IP +Use this option to specify a firmware slot (NVMe) or a buffer ID (SCSI) +along with the \fB\-\-downloadMode\fR (SCSI) or \fB\-\-activateFW\fR (NVMe & SCSI) options. +If this option is not used, a value of zero will be used instead, +which means the drive will automatically select the slot number. +.HP +\fB\-\-fwdlSegSize\fR [segment size in 512B blocks] +.IP +Use this option to specify a segment size in 512B blocks +to use for a segmented or deferred download. This option +will not affect an immediate download (full buffer at once). +The default segment size used is 64. Larger segment sizes +may be faster, however they may also be incompatible with +controllers or drivers in the system. Smaller values are +more likely to be compatible, but also slower. +Use this option if the default used by the tool is not +working correctly for firmware updates. +.TP +\fB\-\-getFeatures\fR +[ help | list | # ] +.IP +Use this option to list the NVMe features +Supported Modes: +.TP +help +\- prints the descriptions of all +.TP +the features +list \- lists raw values of all mandatory +.TP +features supported by device +# \- feature number will print the +.IP +humanized details +.TP +\fB\-\-getNvmeLogPage\fR +[ error | smart | fwSlots | suppCmds | selfTest | # ] +.IP +Use this option to get the NVMe log pages +Supported Modes: +.TP +error +\- lists the valid entries found in the +.TP +Error Information Log. +smart \- lists information found in the +.TP +SMART/Health Information Log +fwSlots \- lists currently active Firmware slot +.TP +and Firmware Revision in each slot. +suppCmds \- lists the commands that the controller +.TP +supports and the effects of those commands. +selfTest \- lists the status of any device +.TP +self\-test operation in progress +and the results of the last 20 device +self\-test operations. +.TP +# +\- option to get the log page using +.IP +a number +.HP +\fB\-\-getTelemetry\fR [host | ctrl] +.IP +Use this option to get the NVMe Telemetry data for a device. +Use the \fB\-\-telemetryDataArea\fR option to control the amount of +data collected. +.TP +Supported Modes: +host \- get Host Telemetry +ctrl \- get Ctrl Telemetry +.HP +\fB\-\-telemetryDataArea\fR [1 | 2 | 3] +.IP +This is a sub\-command which defines the amount of data +collected by the \fB\-\-getTelemetry\fR option. Data Area 3 is assumed +if this option is not used. +.IP +Supported Data Area. +1 \- get minimal telemetry data +2 \- get telemetry data additional to data area 2 +3 \- get telemetry data additional to data area 3 (default data area) +.HP +\fB\-\-onlyFW\fR [firmware revision] +.IP +Use this option to run on all drives matching the provided +firmware revision. This option will only do an exact match. +.HP +\fB\-\-clearPciErr\fR +.IP +Use this option to clear correctable errors. +.HP +\fB\-\-poll\fR +.IP +Use this option to cause another operation to poll for progress +until it has completed. This argument does not return to the +command prompt and prints ongoing completion percentages (%) +.TP +the final test result. +Full drive procedures will take a +.TP +very long time. +Used with \fB\-\-sanitize\fR, or \fB\-\-writeSame\fR (SATA). +.HP +\fB\-\-progress\fR [nvmformat] +.IP +Get the progress for a test that was started quietly without +the polling option (default). You must specify a test you wish to +get progress from. Ex: "\-\-progress dst" or "\-\-progress sanitize" +The progress counts up from 0% to 100%. +.HP +\fB\-\-extSmartLog\fR +.IP +Use this option to Extract the Extended Smart Log Attributes. +.TP +\fB\-\-logMode\fR +[ raw | binary ] +.IP +Use this option with others options such as \fB\-\-getNvmeLogPage\fR +and \fB\-\-deviceInfo\fR to show a buffer output or to +create a binary file. +Supported Modes: +.TP +raw +\- prints the raw buffer on stdout +.PP + +.TP +binary \- writes data to a file with device +Serial Number & time stamp +.HP +\fB\-\-tempStats\fR +.IP +Use this option to get the NVMe Temperature Statistics +.HP +\fB\-\-pciStats\fR +.IP +Use this option to get the NVMe PCIe Statistics +.HP +\fB\-\-showSupportedFormats\fR +.IP +This option will show the supported formats of a device. +These can be used to change the sector size or +used with a format operation. On SAS, this is the +supported block lengths and protection types VPD page. (SBC4 +and later) On SATA, this is the sector configuration log. (ACS4 +and later) If the device does not report supported sector +sizes, please consult your product manual. +.TP +WARNING: Customer unique firmware may have specific requirements that +restrict sector sizes on some products. It may not be possible to format/ +fast format to common sizes like 4K or 512B due to these customer requirements. +.PP +Data Destructive Commands +========================= +.HP +\fB\-\-nvmFmtMetadataSet\fR [ xlba | separate ] (NVMe Only) +.IP +Use this option to specify how metadata is transmitted to +the host system. +Options: +.IP +xlba \- metadata is transferred as part of the logical block data +separate \- metadata is transferred as a separate buffer +.IP +Note: Not all devices support specifying this. +If this option is not provided, the NVM format will +reuse the current setting. +.TP +\fB\-\-nvmFmtMS\fR [ # of bytes for metadata ] +(NVMe Only) +.IP +This option is used to specify the length of metadata +with a requested logical block size. The device must +support the combination of logical block size and metadata size +or the format will be rejected by the device. +.TP +\fB\-\-nvmFmtNSID\fR [all | current] +(NVMe Only) +.IP +This option changes the NSID used when issuing the NVM format +command. This can be used to control formatting an entire +device or a specific namespace if the device supports specifying +specific namespaces for a format command. Not all devices support +this behavior. This has no effect on devices that do not support +targeting a specific namespace and will format the entire device +If this option is not given, the format will be issued to all +namespaces by default. +.TP +\fB\-\-nvmFmtPI\fR [ 0 | 1 | 2 | 3 ] +(NVMe Only) +.IP +Use this option to specify the protection type to format the +medium with. +Note: Not all devices support protection types. +If this option is not provided, the NVM format will +reuse the current setting. +.HP +\fB\-\-nvmFmtPIL\fR [ beginning | end ] (NVMe Only) +.IP +Use this option to specify the location protection +information in an NVM device's metadata. +Note: Not all devices support specifying this. +If this option is not provided, the NVM format will +reuse the current setting. +.HP +\fB\-\-nvmFmtSecErase\fR [none | user | crypto] (NVMe Only) +.IP +This option is used to specify the type of erase to perform +during an NVM format operation. All user data will be inaccessible +upon completion of an NVM format, no matter the erase requested. +Options: +.IP +none \- no secure erase requested (previous data will not be accessible) +user \- requests all user data is erased by the device. +crypto \- requests a cryptographic erase of all user data. Note: this mode +.IP +is not supported on all devices. +.TP +\fB\-\-nvmFormat\fR [current | format # | sector size] +(NVMe Only) +.IP +This option is used to start an NVM format operation. +Use "current" to perform a format operation with the +Sector size currently being used. +If a value between 0 and 15 is given, then that will issue +the NVM format with the specified sector size/metadata size for +that supported format on the drive. +Values 512 and higher will be treated as a new sector size +to switch to and will be matched to an appropriate lba format +supported by the drive. +This command will erase all data on the drive. +Combine this option with\-\-poll to poll +for progress until the format is complete. +.IP +openSeaChest_NVMe \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_NVMe Version: 2.0.8\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:48:32 2022 User: tyler +.PP +========================================================================================== +Version Info for openSeaChest_NVMe: +.IP +Utility Version: 2.0.8 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 +Compiled Architecture: X86_64 +Detected Endianness: Little Endian +Compiler Used: GCC +Compiler Version: 11.2.0 +Operating System Type: Linux +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS +.SH "SEE ALSO" +The full documentation for +.B openSeaChest_NVMe +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_NVMe +programs are properly installed at your site, the command +.IP +.B info openSeaChest_NVMe +.PP +should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_PassthroughTest.8 b/docs/man/man8/openSeaChest_PassthroughTest.8 new file mode 100644 index 00000000..9d8346b7 --- /dev/null +++ b/docs/man/man8/openSeaChest_PassthroughTest.8 @@ -0,0 +1,312 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_PASSTHROUGHTEST "1" "July 2022" "openSeaChest_PassthroughTest ==========================================================================================" "User Commands" +.SH NAME +openSeaChest_PassthroughTest \- manual page for openSeaChest_PassthroughTest ========================================================================================== +.SH DESCRIPTION +========================================================================================== +.IP +openSeaChest_PassthroughTest \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_PassthroughTest Version: 1.1.5\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:48:45 2022 User: tyler +.PP +========================================================================================== +Usage +===== +.IP +openSeaChest_PassthroughTest [\-d ] {arguments} {options} +.PP +Examples +======== +.IP +openSeaChest_PassthroughTest \fB\-\-scan\fR +openSeaChest_PassthroughTest \fB\-d\fR /dev/sg? \fB\-i\fR +.PP +Return codes +============ +.IP +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error +.PP +Utility Options +=============== +.HP +\fB\-\-echoCommandLine\fR +.IP +Echo the command line entered into the utility on the screen. +.HP +\fB\-\-enableLegacyUSBPassthrough\fR +.IP +Only use this option on old USB or IEEE1394 (Firewire) +products that do not otherwise work with the tool. +This option will enable a trial and error method that +attempts sending various ATA Identify commands through +vendor specific means. Because of this, certain products +that may respond in unintended ways since they may interpret +these commands differently than the bridge chip the command +was designed for. +.HP +\fB\-\-forceATA\fR +.IP +Using this option will force the current drive to +be treated as a ATA drive. Only ATA commands will +be used to talk to the drive. +.TP +\fB\-\-forceATADMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to DMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAPIO\fR +(SATA Only) +.IP +Using this option will force the tool to issue PIO +commands to ATA device when possible. This option can +be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAUDMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to UDMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.HP +\fB\-\-forceSCSI\fR +.IP +Using this option will force the current drive to +be treated as a SCSI drive. Only SCSI commands will +be used to talk to the drive. +.HP +\fB\-h\fR, \fB\-\-help\fR +.IP +Show utility options and example usage (this output you see now) +Please report bugs/suggestions to seaboard@seagate.com. +Include the output of \fB\-\-version\fR information in the email. +.HP +\fB\-\-license\fR +.IP +Display the Seagate End User License Agreement (EULA). +.HP +\fB\-\-modelMatch\fR [model Number] +.IP +Use this option to run on all drives matching the provided +model number. This option will provide a closest match although +an exact match is preferred. Ex: ST500 will match ST500LM0001 +.HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP +\fB\-\-onlyFW\fR [firmware revision] +.IP +Use this option to run on all drives matching the provided +firmware revision. This option will only do an exact match. +.HP +\fB\-\-onlySeagate\fR +.IP +Use this option to match only Seagate drives for the options +provided +.HP +\fB\-q\fR, \fB\-\-quiet\fR +.IP +Run openSeaChest_PassthroughTest in quiet mode. This is the same as +\fB\-v\fR 0 or \fB\-\-verbose\fR 0 +.HP +\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +.IP +Show verbose information. Verbosity levels are: +0 \- quiet +1 \- default +2 \- command descriptions +3 \- command descriptions and values +4 \- command descriptions, values, and data buffers +Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 +.HP +\fB\-V\fR, \fB\-\-version\fR +.IP +Show openSeaChest_PassthroughTest version and copyright information & exit +.PP +Utility Arguments +================= +.HP +\fB\-d\fR, \fB\-\-device\fR deviceHandle +.IP +Use this option with most commands to specify the device +handle on which to perform an operation. Example: /dev/sg? +.HP +\fB\-F\fR, \fB\-\-scanFlags\fR [option list] +.IP +Use this option to control the output from scan with the +options listed below. Multiple options can be combined. +.TP +ata \- show only ATA (SATA) devices +usb \- show only USB devices +scsi \- show only SCSI (SAS) devices +nvme \- show only NVMe devices +interfaceATA \- show devices on an ATA interface +interfaceUSB \- show devices on a USB interface +interfaceSCSI \- show devices on a SCSI or SAS interface +interfaceNVME = show devices on an NVMe interface +sd \- show sd device handles +sgtosd \- show the sd and sg device handle mapping +.HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP +\fB\-S\fR, \fB\-\-Scan\fR +.IP +This option is the same as \fB\-\-scan\fR or \fB\-s\fR, +however it will also perform a low level rescan to pick up +other devices. This low level rescan may wake devices from low +power states and may cause the OS to re\-enumerate them. +Use this option when a device is plugged in and not discovered in +a normal scan. +NOTE: A low\-level rescan may not be available on all interfaces or +all OSs. The low\-level rescan is not guaranteed to find additional +devices in the system when the device is unable to come to a ready state. +.HP +\fB\-\-SATInfo\fR +.IP +Displays SATA device information on any interface +using both SCSI Inquiry / VPD / Log reported data +(translated according to SAT) and the ATA Identify / Log +reported data. +.HP +\fB\-\-testUnitReady\fR +.IP +Issues a SCSI Test Unit Ready command and displays the +status. If the drive is not ready, the sense key, asc, +ascq, and fru will be displayed and a human readable +translation from the SPC spec will be displayed if one +is available. +.HP +\fB\-\-ptDriveHint\fR [ata | nvme] +.IP +This option passes a hint to the software that the device being tested is +an ATA or NVMe drive so it can appropriately test it. +This option is most useful when also using \fB\-\-ptTypeHint\fR +.HP +\fB\-\-ptTypeHint\fR [sat | legacyATA] +.IP +Add this option if the device being tested is likely to support one of +the supported passthrough types. This hints to the software to perform +additional testing for these passthroughs if no other support is apparent. +.TP +sat \- device supports SAT ATA\-passthrough commands (12 or 16 byte) +legacyATA \- device supports a legacy vendor unique method to passthrough +.TP +ATA commands. You must also specify \fB\-\-enableLegacyATAPTTest\fR +in order for these commands to be tested. +.HP +\fB\-\-disablePassthroughTesting\fR +.IP +Disables all ATA passthrough testing. Device will only be tested with SCSI commands from +SPC and SBC specifications. +.HP +\fB\-\-enableLegacyATAPTTest\fR +.IP +Add this option to the command line to allow sending legacy passthrough CDBs from +old USB adapters or drivers. By default these are off since these operation codes +may perform unintended actions on devices that don't actually support passthrough. +For example: There is a USB thumbdrive that receives one of these and bricks immediately. +Only add this to the command line if you understand and have high confidence that the +device you are testing is likely to support one of these passthroughs. Most of these devices +will have been created prior to 2006 when the SAT spec was added for a standardized passthrough. +.HP +\fB\-\-enableHangCmdsTest\fR [all | zlr | sctgpl | rrTdir] +.IP +There are some commands that are known to cause some translators +to hang when they are received. This option covers some known commands for some devices +This must be enabled manually for a more complete test, but if it hangs the device could cause problems. +Each of these tests has a specific hack/quirk related to it, so if the device hangs, then it must be added +to the list for higher compatibility. Not all hangs will be able to be detected by the software! +Put this option on the command line multiple times to add different combinations of tests. +.TP +all \- run all known commands that may cause hangs +zlr \- do SCSI read commands with zero transfer length +sctgpl \- try reading the SCT status log with a GPL read log ext command +rrTdir \- in the SAT return response information protocol, run it without setting the tdir bit as the spec allows +.HP +\fB\-\-forceRetest\fR +.IP +Use this option to force this utility to retest this device if it reports +that it is already known. This may be useful when testing multiple devices +that use the same chip and are identified, or when trying to troubleshoot +compatibility on another OS. +.HP +\fB\-\-runPTTest\fR +.IP +This option is used to perform the passthrough test. +The passthrough test is an attempt to figure out quirks or +hacks with different translators in order to make the device +more compatible with the rest of the openSeaChest software. +The default test is done using only what can be determined about +the device from the SCSI reported data. Attempting to passthrough +ATA or NVMe commands may not be done depending on how the device reports. +Using the other options can help tell this software to test for other +behavior. The other options to control the test are as follows: +.TP +\fB\-\-ptDriveHint\fR +\fB\-\-ptTypeHint\fR +\fB\-\-disablePassthroughTesting\fR +\fB\-\-enableLegacyATAPTTest\fR +\fB\-\-enableHangCmdsTest\fR +\fB\-\-forceRetest\fR +.IP +openSeaChest_PassthroughTest \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_PassthroughTest Version: 1.1.5\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:48:45 2022 User: tyler +.PP +========================================================================================== +Version Info for openSeaChest_PassthroughTest: +.IP +Utility Version: 1.1.5 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 +Compiled Architecture: X86_64 +Detected Endianness: Little Endian +Compiler Used: GCC +Compiler Version: 11.2.0 +Operating System Type: Linux +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS +.SH "SEE ALSO" +The full documentation for +.B openSeaChest_PassthroughTest +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_PassthroughTest +programs are properly installed at your site, the command +.IP +.B info openSeaChest_PassthroughTest +.PP +should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_PowerControl.8 b/docs/man/man8/openSeaChest_PowerControl.8 index 08dd60ff..10eaad21 100644 --- a/docs/man/man8/openSeaChest_PowerControl.8 +++ b/docs/man/man8/openSeaChest_PowerControl.8 @@ -1,88 +1,187 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4. -.\" Assuming you have the man tool installed, you can read this file directly with -.\" man ./openSeaChest_.8 -.\" System administration man pages are kept in the man8 folder. Use the manpath tool -.\" to determine the location of man pages on your system. Your favorite Linux system -.\" probably has man8 pages stored at: -.\" /usr/local/share/man/man8 -.\" or -.\" /usr/share/man/man8 -.\" -.\" If you want to use them then just copy to one of the above folders and they will -.\" be found. Just type: -.\" man openSeaChest_ -.ad l -.TH OPENSEACHEST_POWERCONTROL "8" "March 2019" "openSeaChest_Utilities" "System Administration Utilities" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_POWERCONTROL "1" "July 2022" "openSeaChest_PowerControl ==========================================================================================" "User Commands" .SH NAME -openSeaChest_PowerControl +openSeaChest_PowerControl \- manual page for openSeaChest_PowerControl ========================================================================================== .SH DESCRIPTION ========================================================================================== -.br -openSeaChest_PowerControl \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -openSeaChest_PowerControl Version: 1.11.0\-1_19_2 X86_64 -.br -Build Date: Feb 28 2019 -.br -========================================================================================== +.IP +openSeaChest_PowerControl \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_PowerControl Version: 3.1.10\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:48:58 2022 User: tyler .PP +========================================================================================== Usage -.br ===== .IP openSeaChest_PowerControl [\-d ] {arguments} {options} .PP Examples -.br ======== .IP openSeaChest_PowerControl \fB\-\-scan\fR -.br openSeaChest_PowerControl \fB\-d\fR /dev/sg? \fB\-i\fR +openSeaChest_PowerControl \fB\-d\fR /dev/sg? \fB\-\-showEPCSettings\fR +openSeaChest_PowerControl \fB\-d\fR /dev/sg? \fB\-\-idle_a\fR 5000 +openSeaChest_PowerControl \fB\-d\fR /dev/sg? \fB\-\-idle_b\fR disable +openSeaChest_PowerControl \fB\-d\fR /dev/sg? \fB\-\-transitionPower\fR standby_z +openSeaChest_PowerControl \fB\-d\fR /dev/sg? \fB\-\-idle_a\fR 5000 \fB\-\-standby_z\fR 30000 \fB\-\-idle_b\fR enable \fB\-\-idle_c\fR disable .PP -Utility Arguments -.br -================= +Return codes +============ +.IP +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error +.PP +Utility Options +=============== .HP -\fB\-s\fR, \fB\-\-scan\fR +\fB\-\-echoCommandLine\fR .IP -Scan the system and list all storage devices with logical -/dev/sg? assignments. Shows model, serial and firmware -numbers. If your device is not listed on a scan immediately -after booting, then wait 10 seconds and run it again. +Echo the command line entered into the utility on the screen. +.HP +\fB\-\-enableLegacyUSBPassthrough\fR +.IP +Only use this option on old USB or IEEE1394 (Firewire) +products that do not otherwise work with the tool. +This option will enable a trial and error method that +attempts sending various ATA Identify commands through +vendor specific means. Because of this, certain products +that may respond in unintended ways since they may interpret +these commands differently than the bridge chip the command +was designed for. +.HP +\fB\-\-forceATA\fR +.IP +Using this option will force the current drive to +be treated as a ATA drive. Only ATA commands will +be used to talk to the drive. +.TP +\fB\-\-forceATADMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to DMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAPIO\fR +(SATA Only) +.IP +Using this option will force the tool to issue PIO +commands to ATA device when possible. This option can +be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAUDMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to UDMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.HP +\fB\-\-forceSCSI\fR +.IP +Using this option will force the current drive to +be treated as a SCSI drive. Only SCSI commands will +be used to talk to the drive. +.HP +\fB\-h\fR, \fB\-\-help\fR +.IP +Show utility options and example usage (this output you see now) +Please report bugs/suggestions to seaboard@seagate.com. +Include the output of \fB\-\-version\fR information in the email. +.HP +\fB\-\-license\fR +.IP +Display the Seagate End User License Agreement (EULA). +.HP +\fB\-\-modelMatch\fR [model Number] +.IP +Use this option to run on all drives matching the provided +model number. This option will provide a closest match although +an exact match is preferred. Ex: ST500 will match ST500LM0001 +.HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP +\fB\-\-onlyFW\fR [firmware revision] +.IP +Use this option to run on all drives matching the provided +firmware revision. This option will only do an exact match. +.HP +\fB\-\-onlySeagate\fR +.IP +Use this option to match only Seagate drives for the options +provided +.HP +\fB\-q\fR, \fB\-\-quiet\fR +.IP +Run openSeaChest_PowerControl in quiet mode. This is the same as +\fB\-v\fR 0 or \fB\-\-verbose\fR 0 +.HP +\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +.IP +Show verbose information. Verbosity levels are: +0 \- quiet +1 \- default +2 \- command descriptions +3 \- command descriptions and values +4 \- command descriptions, values, and data buffers +Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 +.HP +\fB\-V\fR, \fB\-\-version\fR +.IP +Show openSeaChest_PowerControl version and copyright information & exit +.PP +Utility Arguments +================= .HP \fB\-d\fR, \fB\-\-device\fR deviceHandle .IP Use this option with most commands to specify the device handle on which to perform an operation. Example: /dev/sg? .HP -\fB\-i\fR, \fB\-\-deviceInfo\fR -.IP -Show information and features for the storage device -.HP \fB\-F\fR, \fB\-\-scanFlags\fR [option list] .IP Use this option to control the output from scan with the options listed below. Multiple options can be combined. -.IP +.TP ata \- show only ATA (SATA) devices -.br usb \- show only USB devices -.br scsi \- show only SCSI (SAS) devices -.br +nvme \- show only NVMe devices interfaceATA \- show devices on an ATA interface -.br interfaceUSB \- show devices on a USB interface -.br interfaceSCSI \- show devices on a SCSI or SAS interface -.br +interfaceNVME = show devices on an NVMe interface sd \- show sd device handles -.br sgtosd \- show the sd and sg device handle mapping .HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP \fB\-S\fR, \fB\-\-Scan\fR .IP This option is the same as \fB\-\-scan\fR or \fB\-s\fR, @@ -91,7 +190,6 @@ other devices. This low level rescan may wake devices from low power states and may cause the OS to re\-enumerate them. Use this option when a device is plugged in and not discovered in a normal scan. -.br NOTE: A low\-level rescan may not be available on all interfaces or all OSs. The low\-level rescan is not guaranteed to find additional devices in the system when the device is unable to come to a ready state. @@ -111,103 +209,132 @@ ascq, and fru will be displayed and a human readable translation from the SPC spec will be displayed if one is available. .HP -\fB\-\-active\fR -.IP -This command will transition a drive to the active power state. -This uses a ATA read\-verify command to a random LBA, or a SCSI -start\-stop unit command. -.HP -\fB\-\-changePower\fR -.IP -Use this option to enable or disable certain \fB\-\-powerMode\fR and -their timers. You can also use this option to restore default -values to the drive. -.HP \fB\-\-checkPowerMode\fR .IP Get the current power mode of a drive. On SCSI devices, this will only work if the drive has transitioned from active state to another state. .HP -\fB\-\-defaultMode\fR -.IP -Use this option with the change power mode option restore the -default settings for a specific power mode. -.HP -\fB\-\-disableMode\fR -.IP -Use this option with the change power mode option to disable -a specific power mode. -.HP \fB\-\-EPCfeature\fR [enable | disable] .IP Enables or disables Extended Power Conditions (EPC) support for devices. To disable EPC use \fB\-\-EPCfeature\fR disable. Note that the EPC Feature Set is not supported on all devices. Use \fB\-\-deviceInfo\fR option to see if EPC is supported. +.TP +WARNING: The EPC settings may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-idle_a\fR [ enable | disable | default | timerValueMilliseconds ] +.TP +Use this setting to change the EPC Idle_A power mode settings. +enable \- enable the power state +disable \- disable the power state +default \- restore default settings for this power state +timerValue \- number of milliseconds to set for the timer +.TP +used in this power state. If a timer is provided +the state will also be enabled, if not already. +EPC spec timers are set in 100 millisecond increments. +Timers will be truncated to fit 100 millisecond increments. +.TP +WARNING: EPC Settings may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP -\fB\-\-enableMode\fR -.IP -Use this option with the change power mode option to enable -a specific power mode. -.HP -\fB\-\-idle\fR -.IP -This command will transition a drive to the idle power state. -This command may flush the cache before the transition to this state. -This command is for non\-EPC enabled drives. If the drive has the EPC -feature enabled, it is recommended that the \fB\-\-transitionPower\fR option -be used instead. This option is compatible with EPC enabled drives as well, -but offers less control over the transition. -If the operating system selects this drive, it will transition it back to -an active state. -.HP -\fB\-\-idleUnload\fR -.IP -This command will transition a drive to the idle, heads unloaded, power state. -This command may flush the cache before the transition to this state. -This command is for non\-EPC enabled drives. If the drive has the EPC -feature enabled, it is recommended that the \fB\-\-transitionPower\fR option -be used instead. This option is compatible with EPC enabled drives as well, -but offers less control over the transition. -If the operating system selects this drive, it will transition it back to -an active state. -.HP -\fB\-\-powerMode\fR [powermode] -.IP -Use this option to specify a power mode. This should be used -with the \fB\-\-transitionPower\fR or \fB\-\-changePower\fR options. -.IP -Valid power modes (SAS and SATA): -.br -idle_a -.br -idle_b -.br -idle_c -.br -standby_y (SAS only) -.br -standby_z -.br -active (SAS only) -.br -all (enable or disable only) -.IP -Valid power modes (NVMe): 0 \- 30 +\fB\-\-idle_b\fR [ enable | disable | default | timerValueMilliseconds ] +.TP +Use this setting to change the EPC Idle_B power mode settings. +enable \- enable the power state +disable \- disable the power state +default \- restore default settings for this power state +timerValue \- number of milliseconds to set for the timer +.TP +used in this power state. If a timer is provided +the state will also be enabled, if not already. +EPC spec timers are set in 100 millisecond increments. +Timers will be truncated to fit 100 millisecond increments. +.TP +WARNING: EPC Settings may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-idle_c\fR [ enable | disable | default | timerValueMilliseconds ] +.TP +Use this setting to change the EPC Idle_C power mode settings. +enable \- enable the power state +disable \- disable the power state +default \- restore default settings for this power state +timerValue \- number of milliseconds to set for the timer +.TP +used in this power state. If a timer is provided +the state will also be enabled, if not already. +EPC spec timers are set in 100 millisecond increments. +Timers will be truncated to fit 100 millisecond increments. +.TP +WARNING: EPC Settings may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.TP +\fB\-\-powerMeasurementMode\fR [all | 5 | 12] +(Seagate Only) +.IP +Use this option along with \fB\-\-requestPowerMeasurement\fR to specify +which sources to measure power on for the requested time. +.IP +all \- measure all power sources +5 \- measure only the 5v power +12 \- measure only the 12v power +.TP +\fB\-\-requestPowerMeasurement\fR [seconds to perform measurement] +(Seagate Only) +.IP +This option is used to specify a time to perform a power +measurement for. The minimum measurement time is 22 seconds +and the maximum is 65535 seconds. If a time less than 22 seconds +is provided, 22 seconds will be used by the drive. A value greater +than 65535 will result in error. +Use the \fB\-\-powerMeasurementMode\fR option to specify which mode to measure. +.TP +\fB\-\-powerBalanceFeature\fR [ info | enable | disable | limited] +(Seagate Only) +.IP +Use this option to see the state of the Seagate Power Balance +feature or to change its state. +Seagate's PowerBalance feature will adjust drive performance during +random operations to reduce power consumption of the drive. +.IP +info \- will dump the state of the Power Balance feature on the screen +enable \- use this to enable Power Balance (lowest power consumption) +disable \- use this to disable Power Balance (hihgest power consumption) +limited \- 12w limited mode. Dual actuator SATA only +.IP +Note: While this feature is available on some SAS products, +it is recommended that the \fB\-\-setPowerConsumption\fR option is +used instead since it allows more levels of control. +This option and the \fB\-\-setPowerConsumption\fR option are incompatible +because they use the same mode page fields (1Ah\-01h). +.TP +WARNING: Seagate Power Balance may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP \fB\-\-showEPCSettings\fR .IP Use this option to show the current EPC settings on the screen. Only drives supporting the EPC feature will show this data and only supported power conditions will be shown. -.HP -\fB\-\-sleep\fR -.IP -This command will transition a drive to the sleep power state. -A reset must be sent to wake a drive from sleep state. -The OS may not be able to wake a drive from this state once it has -been entered. Use this option with caution! +.TP +\fB\-\-showPowerTelemetry\fR +(Seagate Only) +.IP +Use this option to show the power telemetry data from +a Seagate drive that supports the power telemetry feature +If a measurement was not previously requested, this will show +free\-running mode data from the last 10 minutes. +If this option is provided while a measurement is still +in progress, this will show all data that is currently available +Use the \fB\-\-requestPowerMeasurement\fR option to request a power +measurement with a set time window. +.TP +NOTE: Power measurements are for the full device, not individual +logical units. All logical units will be measured for this data. .HP \fB\-\-spinDown\fR .IP @@ -215,71 +342,121 @@ Removes power to the disk drive motor with the Standby Immediate command. Use this before moving a hard disk drive. The drive will spin back up if the operating system selects the drive. This means that an active drive will not stay spun down. +.TP +WARNING: Spindown may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP -\fB\-\-standby\fR +\fB\-\-standby\fR [ enable | disable | default | timerValueMilliseconds ] (Some settings are SAS only) .IP -This command will transition a drive to the standby power state. -This command will flush the cache before the transition to this state. -This command is for non\-EPC enabled drives. If the drive has the EPC -feature enabled, it is recommended that the \fB\-\-transitionPower\fR option -be used instead. This option is compatible with EPC enabled drives as well, -but offers less control over the transition. -On an HDD, this will cause the spindle motor to stop. -If the operating system selects this drive, it will transition it back to -an active state. +Use this setting to change the standby power mode settings. +NOTE: This is the legacy standby timer before EPC drives. +.TP +If this is used on an EPC drive, this will modify +the standby_z power state and timer values. +.TP +enable +\- enable the power state (SAS Only) +.TP +disable \- disable the power state +(SAS Only) +.TP +default \- restore default settings for this power state +(SAS Only) +.TP +timerValue \- number of milliseconds to set for the timer +used in this power state. If a timer is provided +the state will also be enabled, if not already. +Spec timers are set in 100 millisecond increments. +Timers will be truncated to fit 100 millisecond increments. +.IP +ATA drives can only change the standby timer, not disable it. +On ATA drives, the standby timer set by this command is volatile +and drive defaults are restored on next power cycle. +.TP +WARNING: EPC Settings may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP -\fB\-\-modeTimer\fR [timer value in milliseconds] -.IP -Use this option to specify a timer value to use with the -\fB\-\-changePower\fR mode option. +\fB\-\-standby_y\fR [ enable | disable | default | timerValueMilliseconds ] +.TP +Use this setting to change the EPC Standby_Y power mode settings. +enable \- enable the power state +disable \- disable the power state +default \- restore default settings for this power state +timerValue \- number of milliseconds to set for the timer +.TP +used in this power state. If a timer is provided +the state will also be enabled, if not already. +EPC spec timers are set in 100 millisecond increments. +Timers will be truncated to fit 100 millisecond increments. +.TP +WARNING: EPC Settings may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. .HP -\fB\-\-transitionPower\fR +\fB\-\-standby_z\fR [ enable | disable | default | timerValueMilliseconds ] +.TP +Use this setting to change the EPC Standby_Z power mode settings. +enable \- enable the power state +disable \- disable the power state +default \- restore default settings for this power state +timerValue \- number of milliseconds to set for the timer +.TP +used in this power state. If a timer is provided +the state will also be enabled, if not already. +EPC spec timers are set in 100 millisecond increments. +Timers will be truncated to fit 100 millisecond increments. +.TP +WARNING: EPC Settings may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-transitionPower\fR [active | idle | idleUnload | standby | idle_a | idle_b | idle_c | standby_y | standby_z | sleep] .IP -Use this option to transition the drive to a specific -power state -.PP -SATA Only: -.br -========= -.br -\fB\-\-powerBalanceFeature\fR [ info | enable | disable ] +Use this option to transition the drive to a specific power state. +EPC and legacy power states are supported. EPC states are only available +on devices supporting the EPC feature. +Supported power states: .IP -Use this option to see the state of the Seagate Power Balance -feature or to change its state. -Seagate's PowerBalance feature will adjust drive performance during -random operations to reduce power consumption of the drive. +active +idle \- idle mode (legacy mode equivalent to idle_a on EPC) +idleUnload \- same as above, but heads are unloaded. This may not .IP -info \- will dump the state of the Power Balance feature on the screen -.br -enable \- use this to enable Power Balance -.br -disable \- use this to disable Power Balance +be supported on all devices. .IP -Note: While this feature is available on some SAS products, -it is recommended that the \fB\-\-setPowerConsumption\fR option is -used instead since it allows more levels of control. -This option and the \fB\-\-setPowerConsumption\fR option are incompatible -because they use the same mode page fields (1Ah\-01h). +standby \- standby mode (legacy mode equivalent to standby_z on EPC) +idle_a \- EPC idle mode +idle_b \- EPC lower power idle mode +idle_c \- EPC lowest power idle mode +standby_y \- EPC low power standby mode +standby_z \- EPC lowest power standby mode +sleep \- Sleep state. WARNING: This requires a reset to wake from. +.TP +Once in this state, this tool cannot wake the drive on its own. +The OS or adapter will need to issue a reset, which may or may not happen. .TP -\fB\-\-disableAPM\fR (SATA Only) +WARNING: Transitioning power modes may affect all LUNs/namespaces +for devices with multiple logical units or namespaces. +.IP +SATA Only: +========= +\fB\-\-disableAPM\fR (SATA Only) .IP Use this option to disable the APM feature on a device. Note: This command is optional and some device may not .IP disabling the APM feature. .TP -\fB\-\-sataDAPSfeature\fR [info | enable | disable ] (SATA Only) +\fB\-\-sataDAPSfeature\fR [info | enable | disable] +(SATA Only) .IP Use this option to enable or disable the SATA Device Automatic Partial To Slumber Transitions (DAPS) feature. Use the "info" option to see the current state of the DIPM feature on the device. The use of this feature requires that the DIPM feature is enabled. -.br NOTE: Please ensure that the host adapter/controller/driver can handle this before enabling it, otherwise the drive link may go down and the device will not be able to communicate. .TP -\fB\-\-sataDIPMfeature\fR [info | enable | disable ] (SATA Only) +\fB\-\-sataDIPMfeature\fR [info | enable | disable] +(SATA Only) .IP Use this option to enable or disable the SATA Device Initiated Power Management (DIPM) feature. Use the "info" option to see @@ -288,280 +465,153 @@ NOTE: Please ensure that the host adapter/controller/driver can handle this before enabling it, otherwise the drive link may go down and the device will not be able to communicate. .TP -\fB\-\-setAPMLevel\fR [1 \- 254] (SATA Only) +\fB\-\-setAPMLevel\fR [1 \- 254] +(SATA Only) .IP Use this option to set the APM level of a device. Valid values are between 1 and 254. -.IP +.TP 1 = Minimum power consumption with standby mode -.br -2\-127 = Intermediate power management with standby mode -.br +2\-127 = Intermediate power management with standby +.TP +mode 128 = Minimum power consumption without standby mode -.br -129\-253 = Intermediate power management without standby mode -.br +129\-253 = Intermediate power management without +.TP +standby mode 254 = Maximum Performance. .TP -\fB\-\-showAPMLevel\fR (SATA Only) +\fB\-\-showAPMLevel\fR +(SATA Only) .IP Use this option to show the current APM level of a device -.PP +.IP SAS Only: -.br ========= -.br -\fB\-\-setPowerConsumption\fR [default | highest | intermediate | lowest | watt value] (SAS Only) +\fB\-\-idle\fR [ enable | disable | default | timerValueMilliseconds ] (SAS Only) +.IP +Use this setting to change the idle power mode settings. +NOTE: This is the legacy idle timer before EPC drives. +.TP +If this is used on an EPC drive, this will modify +the idle_a power state and timer values. +.TP +enable +\- enable the power state +.TP +disable \- disable the power state +default \- restore default settings for this power state +timerValue \- number of milliseconds to set for the timer +.TP +used in this power state. If a timer is provided +the state will also be enabled, if not already. +Spec timers are set in 100 millisecond increments. +Timers will be truncated to fit 100 millisecond increments. +.IP +This is only available on SAS/SCSI drives as ATA drives did not +have a separate configurable idle timer. +.TP +WARNING: EPC Settings may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-sasPhy\fR [phy number] (SAS Only) +.IP +Use this option to specify a specific phy to use +with another option that uses a phy identifier value. +Some tool options will assume all SAS Phys when this +option is not present. Others will produce an error when +a specific phy is needed for an operation. +Use the \fB\-i\fR option to learn more about the supported phys. +.HP +\fB\-\-sasPhyPartial\fR [info | enable | disable] (SAS Only) +.IP +Use this option to enable or disable the partial phy power +condition. This is from the enhanced phy control mode page. +Use the \fB\-\-sasPhy\fR option to specify an individual phy, +otherwise this will be changed on all phys. +WARNING: Configuring this setting may cause the drive to be +undetectable by other hardware if this power condition is not +supported by a controller or expander. +.TP +WARNING: Changing SAS Phy partial may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.HP +\fB\-\-sasPhySlumber\fR [info | enable | disable] (SAS Only) +.IP +Use this option to enable or disable the slumber phy power +condition. This is from the enhanced phy control mode page. +Use the \fB\-\-sasPhy\fR option to specify an individual phy, +otherwise this will be changed on all phys. +WARNING: Configuring this setting may cause the drive to be +undetectable by other hardware if this power condition is not +supported by a controller or expander. +.TP +WARNING: Changing SAS Phy slumber may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.TP +\fB\-\-setPowerConsumption\fR [default | highest | intermediate | lowest | watt value] +(SAS Only) .IP This option will set the power consumption rate of the device to the value input. -.br Options: -.br -default \- sets the device back to default settings -.br -highest \- sets the active level to "highest" -.br -ntermediate \- sets the active level to "intermediate" -.br -lowest \- sets the active level to "lowest" -.br -watt value \- sets the device to a nearest watt value +\fB\-default\fR \- sets the device back to default settings +\fB\-highest\fR \- sets the active level to "highest" +\fB\-intermediate\fR \- sets the active level to "intermediate" +\fB\-lowest\fR \- sets the active level to "lowest" +\fB\-watt\fR value \- sets the device to a nearest watt value less than or equal to the value entered. -.br Power consumption watt values are listed with the \fB\-\-showPowerConsumption\fR command line option. .TP -\fB\-\-showPowerConsumption\fR (SAS Only) +\fB\-\-showPowerConsumption\fR +(SAS Only) .IP This option will show the power consumption rates supported by the device and the current power consumption rate of the device. Use a supported watt value with the \fB\-\-setPowerConsumption\fR option to set the power consumption to that value. -.PP -Utility Options -.br -=============== -.HP -\fB\-\-echoCommandLine\fR -.IP -Echo the command line entered into the utility on the screen. -.HP -\fB\-\-enableLegacyUSBPassthrough\fR .IP -Only use this option on old USB or IEEE1394 (Firewire) -products that do not otherwise work with the tool. -This option will enable a trial and error method that -attempts sending various ATA Identify commands through -vendor specific means. Because of this, certain products -that may respond in unintended ways since they may interpret -these commands differently than the bridge chip the command -was designed for. -.HP -\fB\-\-forceATA\fR -.IP -Using this option will force the current drive to -be treated as a ATA drive. Only ATA commands will -be used to talk to the drive. -.TP -\fB\-\-forceATADMA\fR (SATA Only) -.IP -Using this option will force the tool to issue SAT -commands to ATA device using the protocol set to DMA -whenever possible (on DMA commands). -This option can be combined with \fB\-\-forceATA\fR -.TP -\fB\-\-forceATAPIO\fR (SATA Only) -.IP -Using this option will force the tool to issue PIO -commands to ATA device when possible. This option can -be combined with \fB\-\-forceATA\fR -.TP -\fB\-\-forceATAUDMA\fR (SATA Only) -.IP -Using this option will force the tool to issue SAT -commands to ATA device using the protocol set to UDMA -whenever possible (on DMA commands). -This option can be combined with \fB\-\-forceATA\fR -.HP -\fB\-\-forceSCSI\fR -.IP -Using this option will force the current drive to -be treated as a SCSI drive. Only SCSI commands will -be used to talk to the drive. -.HP -\fB\-h\fR, \fB\-\-help\fR -.IP -Show utility options and example usage (this output you see now) -Please report bugs/suggestions to seaboard@seagate.com. -Include the output of \fB\-\-version\fR information in the email. -.HP -\fB\-\-license\fR -.IP -Display the Seagate End User License Agreement (EULA). -.HP -\fB\-\-modelMatch\fR [model Number] -.IP -Use this option to run on all drives matching the provided -model number. This option will provide a closest match although -an exact match is preferred. Ex: ST500 will match ST500LM0001 -.HP -\fB\-\-onlyFW\fR [firmware revision] -.IP -Use this option to run on all drives matching the provided -firmware revision. This option will only do an exact match. -.HP -\fB\-\-onlySeagate\fR -.IP -Use this option to match only Seagate drives for the options -provided -.HP -\fB\-q\fR, \fB\-\-quiet\fR -.IP -Run openSeaChest_PowerControl in quiet mode. This is the same as -\fB\-v\fR 0 or \fB\-\-verbose\fR 0 -.HP -\fB\-\-sat12byte\fR -.IP -This forces the lower layer code to issue SAT spec -ATA Pass\-through 12 byte commands when possible instead -of 16 byte commands. By default, 16 byte commands are -always used for ATA Pass\-through. -.HP -\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +NVMe Only: +========= +\fB\-\-transitionPowerState\fR [new power state] (NVMe Only) .IP -Show verbose information. Verbosity levels are: -.br -0 \- quiet -.br -1 \- default -.br -2 \- command descriptions -.br -3 \- command descriptions and values -.br -4 \- command descriptions, values, and data buffers -.br -Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 -.HP -\fB\-V\fR, \fB\-\-version\fR +Use this option to transition to a specific power state. +HINT: .IP -Show openSeaChest_PowerControl version and copyright information & exit -.PP -Return codes -.br -============ +Use \fB\-\-deviceInfo\fR to show number of supported states .IP -Generic/Common exit codes -.br -0 = No Error Found -.br -1 = Error in command line options -.br -2 = Invalid Device Handle or Missing Device Handle -.br -3 = Operation Failure -.br -4 = Operation not supported -.br -5 = Operation Aborted -.br -6 = File Path Not Found -.br -7 = Cannot Open File -.br -8 = File Already Exists -.br -Anything else = unknown error -.PP +openSeaChest_PowerControl \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_PowerControl Version: 3.1.10\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:48:58 2022 User: tyler .PP -.br ========================================================================================== -.br -openSeaChest_PowerControl \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -========================================================================================== -.br Version Info for openSeaChest_PowerControl: .IP -Utility Version: 1.11.0 -.br -opensea\-common Version: 1.18.0 -.br -opensea\-transport Version: 1.19.2 -.br -opensea\-operations Version: 1.23.0 -Build Date: Feb 28 2019.br -.br +Utility Version: 3.1.10 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 Compiled Architecture: X86_64 -.br Detected Endianness: Little Endian -.br Compiler Used: GCC -.br -Compiler Version: 4.4.7 -.br +Compiler Version: 11.2.0 Operating System Type: Linux -.br -Operating System Version: 4.14.10\-0 -.br -Operating System Name: TinyCoreLinux 9.0 -.br -Edition: JBOD, NVMe -.br -RAID Support: none - -.SH "REPORTING BUGS" -Please report bugs/suggestions to seaboard at seagate dot com. Include the output of -\fB\-\--version\fR information in the email. See the user guide section 'General Usage -Hints' for information about saving output to a log file. - -.SH COPYRIGHT -Copyright \(co 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -BINARIES and SOURCE CODE files of the openSeaChest open source project have -been made available to you under the Mozilla Public License 2.0 (MPL). Mozilla -is the custodian of the Mozilla Public License ("MPL"), an open source/free -software license. -.br -https://www.mozilla.org/en-US/MPL/ -.br -You -can run -the command option \fB\-\--license\fR to display the agreement and acknowledgements of various open -source tools and projects used with SeaChest Utilities. -.PP -This software uses open source packages obtained with permission from the -relevant parties. For a complete list of open source components, sources and -licenses, please see our Linux USB Boot Maker Utility FAQ for additional -information. -.PP -SeaChest Utilities use libraries from the opensea source code projects. These -projects are maintained at http://github.com/seagate. -The libraries in use are opensea-common, opensea-transport and -opensea-operations. These libraries are available under the Mozilla Public -License 2.0. - - -.SH WEB SITE -There are web pages discussing this software at -.br -https://github.com/Seagate/openSeaChest +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS .SH "SEE ALSO" -.B openSeaChest_Basics, openSeaChest_Configure, openSeaChest_Erase, openSeaChest_Firmware, openSeaChest_Format, openSeaChest_GenericTests, openSeaChest_Info, openSeaChest_Logs, openSeaChest_PowerControl, openSeaChest_SMART - -The full documentation and version history for +The full documentation for .B openSeaChest_PowerControl -is maintained as a simple text file with this name: -.br -.B openSeaChest_PowerControl..txt -The number part of the name will change with each revision. -.br -The command -.IP -.B less /openSeaChest_PowerControl..txt +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_PowerControl +programs are properly installed at your site, the command +.IP +.B info openSeaChest_PowerControl .PP should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_SMART.8 b/docs/man/man8/openSeaChest_SMART.8 index ae0c47ee..0fa1d1b9 100644 --- a/docs/man/man8/openSeaChest_SMART.8 +++ b/docs/man/man8/openSeaChest_SMART.8 @@ -1,95 +1,191 @@ -.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4. -.\" Assuming you have the man tool installed, you can read this file directly with -.\" man ./openSeaChest_.8 -.\" System administration man pages are kept in the man8 folder. Use the manpath tool -.\" to determine the location of man pages on your system. Your favorite Linux system -.\" probably has man8 pages stored at: -.\" /usr/local/share/man/man8 -.\" or -.\" /usr/share/man/man8 -.\" -.\" If you want to use them then just copy to one of the above folders and they will -.\" be found. Just type: -.\" man openSeaChest_ -.ad l -.TH OPENSEACHEST_SMART "8" "March 2019" "openSeaChest_Utilities" "System Administration Utilities" +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_SMART "1" "July 2022" "openSeaChest_SMART ==========================================================================================" "User Commands" .SH NAME -openSeaChest_SMART +openSeaChest_SMART \- manual page for openSeaChest_SMART ========================================================================================== .SH DESCRIPTION ========================================================================================== -.br -openSeaChest_SMART \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -openSeaChest_SMART Version: 1.12.0\-1_19_2 X86_64 -.br -Build Date: Feb 28 2019 -.br -========================================================================================== +.IP +openSeaChest_SMART \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_SMART Version: 2.1.1\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:49:22 2022 User: tyler .PP +========================================================================================== Usage -.br ===== .IP openSeaChest_SMART [\-d ] {arguments} {options} .PP Examples -.br ======== .IP openSeaChest_SMART \fB\-\-scan\fR -.br openSeaChest_SMART \fB\-d\fR /dev/sg? \fB\-i\fR .PP -Utility Arguments -.br -================= +Return codes +============ +.IP +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error +.PP +Utility Options +=============== .HP -\fB\-s\fR, \fB\-\-scan\fR +\fB\-\-echoCommandLine\fR .IP -Scan the system and list all storage devices with logical -/dev/sg? assignments. Shows model, serial and firmware -numbers. If your device is not listed on a scan immediately -after booting, then wait 10 seconds and run it again. +Echo the command line entered into the utility on the screen. +.HP +\fB\-\-enableLegacyUSBPassthrough\fR +.IP +Only use this option on old USB or IEEE1394 (Firewire) +products that do not otherwise work with the tool. +This option will enable a trial and error method that +attempts sending various ATA Identify commands through +vendor specific means. Because of this, certain products +that may respond in unintended ways since they may interpret +these commands differently than the bridge chip the command +was designed for. +.HP +\fB\-\-forceATA\fR +.IP +Using this option will force the current drive to +be treated as a ATA drive. Only ATA commands will +be used to talk to the drive. +.TP +\fB\-\-forceATADMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to DMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAPIO\fR +(SATA Only) +.IP +Using this option will force the tool to issue PIO +commands to ATA device when possible. This option can +be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAUDMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to UDMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.HP +\fB\-\-forceSCSI\fR +.IP +Using this option will force the current drive to +be treated as a SCSI drive. Only SCSI commands will +be used to talk to the drive. +.HP +\fB\-h\fR, \fB\-\-help\fR +.IP +Show utility options and example usage (this output you see now) +Please report bugs/suggestions to seaboard@seagate.com. +Include the output of \fB\-\-version\fR information in the email. +.HP +\fB\-\-license\fR +.IP +Display the Seagate End User License Agreement (EULA). +.HP +\fB\-\-modelMatch\fR [model Number] +.IP +Use this option to run on all drives matching the provided +model number. This option will provide a closest match although +an exact match is preferred. Ex: ST500 will match ST500LM0001 +.HP +\fB\-\-onlyFW\fR [firmware revision] +.IP +Use this option to run on all drives matching the provided +firmware revision. This option will only do an exact match. +.HP +\fB\-\-noTimeLimit\fR +.IP +Use with utility command arguments which have a built in timeout +value. For example, \fB\-\-shortDST\fR has a 10 minute default +timeout. In some cases a good drive may need more time to +complete the test due to other legitimate system activity. +.HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP +\fB\-\-onlySeagate\fR +.IP +Use this option to match only Seagate drives for the options +provided +.HP +\fB\-q\fR, \fB\-\-quiet\fR +.IP +Run openSeaChest_SMART in quiet mode. This is the same as +\fB\-v\fR 0 or \fB\-\-verbose\fR 0 +.HP +\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +.IP +Show verbose information. Verbosity levels are: +0 \- quiet +1 \- default +2 \- command descriptions +3 \- command descriptions and values +4 \- command descriptions, values, and data buffers +Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 +.HP +\fB\-V\fR, \fB\-\-version\fR +.IP +Show openSeaChest_SMART version and copyright information & exit +.PP +Utility Arguments +================= .HP \fB\-d\fR, \fB\-\-device\fR deviceHandle .IP Use this option with most commands to specify the device handle on which to perform an operation. Example: /dev/sg? .HP -\fB\-i\fR, \fB\-\-deviceInfo\fR -.IP -Show information and features for the storage device -.HP \fB\-F\fR, \fB\-\-scanFlags\fR [option list] .IP Use this option to control the output from scan with the options listed below. Multiple options can be combined. -.IP +.TP ata \- show only ATA (SATA) devices -.br usb \- show only USB devices -.br scsi \- show only SCSI (SAS) devices -.br +nvme \- show only NVMe devices interfaceATA \- show devices on an ATA interface -.br interfaceUSB \- show devices on a USB interface -.br interfaceSCSI \- show devices on a SCSI or SAS interface -.br +interfaceNVME = show devices on an NVMe interface sd \- show sd device handles -.br sgtosd \- show the sd and sg device handle mapping .HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP \fB\-\-poll\fR .IP Use this option to cause another operation to poll for progress until it has completed. This argument does not return to the command prompt and prints ongoing completion percentages (%) +.TP the final test result. Full drive procedures will take a +.TP very long time. Used with \fB\-\-sanitize\fR, or \fB\-\-writeSame\fR (SATA). .HP @@ -100,6 +196,13 @@ the polling option (default). You must specify a test you wish to get progress from. Ex: "\-\-progress dst" or "\-\-progress sanitize" The progress counts up from 0% to 100%. .HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP \fB\-S\fR, \fB\-\-Scan\fR .IP This option is the same as \fB\-\-scan\fR or \fB\-s\fR, @@ -108,7 +211,6 @@ other devices. This low level rescan may wake devices from low power states and may cause the OS to re\-enumerate them. Use this option when a device is plugged in and not discovered in a normal scan. -.br NOTE: A low\-level rescan may not be available on all interfaces or all OSs. The low\-level rescan is not guaranteed to find additional devices in the system when the device is unable to come to a ready state. @@ -135,6 +237,8 @@ Abort a diagnostic Drive Self Test that is in progress. \fB\-\-abortIDD\fR (Seagate Only) .IP Abort a Seagate In Drive Diagnostic (IDD) that is in progress. +This may return failure if IDD is not running or has already +completed running. .HP \fB\-\-captive\fR or \fB\-\-foreground\fR .IP @@ -153,34 +257,56 @@ This test can take up to 2 minutes to complete. Use the \fB\-\-poll\fR argument to make this operation poll for progress until complete. Use the \fB\-\-progress\fR dst command to check on the completion percentage (%) and test result. +NOTE: conveyance DST may take longer if there is other disk usage +while the DST is running. If the DST takes longer than 10 minutes +it will automatically be aborted while polling for progress. +To override this behavior, use the \fB\-\-noTimeLimit\fR option. +.HP +\fB\-\-deviceStatistics\fR +.IP +Use this option to display the device statistics reported +by the device. On SATA, this uses the Device Statistics +log, and the notifications log (if DSN feature is supported) +to display these statistics. On SAS, various log pages are +read to collect a bunch of reported parameter information. .HP \fB\-\-errorLimit\fR [limit in number of LBAs] .IP Use this option to specify a different error limit for a user generic or long generic read test or DST and Clean. This must be a number of +.IP logical LBAs to have errors. If a drive has multiple logical sectors per physical sector, this number will +.IP be adjusted for you to reflect the drive architecture. .TP -\fB\-\-idd\fR [short | long] (Seagate Only) +\fB\-\-idd\fR [short | long] +(Seagate Only) .IP Start an In Drive Diagnostic (IDD) test on a Seagate drive. Not all tests are supported by all products. If a selected test is not supported, the utility will return a error code meaning "not supported". -.br Short: Reset and Recalibration test. Be careful running this +.IP test on the boot device. -.br -Long: Reset and Recalibration test and test G list and +.TP +Long: +Reset and Recalibration test and test G list and P list -.IP +.TP Note: the \fB\-\-captive\fR option can be added to run the long test in foreground/captive mode. This allows for G\-list healing and some additional checks to be performed. This may not work on some products. +.TP +Note: Progress cannot be checked for the first 2 minutes of IDD. +The drive is busy with the test and is not able to respond. +Attempting to retrieve progress during this time will hang and +may cause the IDD to abort due to the host issuing resets to +recover access to the drive. .HP \fB\-\-longDST\fR .IP @@ -192,7 +318,7 @@ Use the \fB\-\-progress\fR dst command to check on the completion percentage(%) and test result. This test stops on the first error. Use \fB\-\-abortDST\fR to manually stop the test. SAS drives give status in 1% -increments. SATA drivs give status in 10% increments which +increments. SATA drives give status in 10% increments which means more than an hour may elapse between updates on a SATA drive > 2TB. .IP @@ -201,6 +327,11 @@ the test then you will need to open a second terminal window and run the \fB\-\-abortDST\fR command. Otherwise, it is safe to restart the system while long DST is running which also ends the test. +NOTE: Long DST may take longer if there is other disk usage +while the DST is running. If the DST takes longer than 5x the +drive reported time, it will automatically be aborted while +polling for progress. +To override this behavior, use the\-\-noTimeLimit option. .HP \fB\-\-shortDST\fR .IP @@ -209,6 +340,10 @@ up to 2 minutes to complete. Use the \fB\-\-poll\fR argument to make this operation poll for progress until complete. Use the \fB\-\-progress\fR dst command to check on the completion percentage (%) and test result. +NOTE: Short DST may take longer if there is other disk usage +while the DST is running. If the DST takes longer than 10 minutes +it will automatically be aborted while polling for progress. +To override this behavior, use the \fB\-\-noTimeLimit\fR option. .HP \fB\-\-showDSTLog\fR .IP @@ -222,18 +357,16 @@ Perform a SMART check on a device to see if any internal thresholds have been tripped or if the drive is still operating within specification. .TP -\fB\-\-smartFeature\fR [ enable | disable ] (SATA Only) +\fB\-\-smartFeature\fR [ enable | disable ] +(SATA Only) .IP Use this option to enable or disable the SMART feature on a SATA drive. -.br Note: This command is declared obsolete in ACS4. -.PP +.IP SATA Only: -.br ========= -.br -\fB\-\-smartAttributes\fR [raw | analyzed] (SATA Only) +\fB\-\-smartAttributes\fR [raw | hybrid | analyzed] (SATA Only) .IP The drive will display its list of supported SMART attributes. Some attributes names are commonly standard and most others are @@ -243,14 +376,29 @@ used to determine a warranty return. Use the \fB\-\-smartCheck\fR command to determine if one of the warranty attributes has been tripped. Seagate Support does not help to analyze SMART attributes. +Output modes: +.IP +raw \- All hex output for those that need every single bit. +hybrid \- classic table view with some interpretation of some .TP -\fB\-\-smartAttributeAutosave\fR [ enable | disable ] (SATA Only) +fields. Partial raw interpretation, but not all drive +and firmware combinations are supported. +.TP +analyzed \- a full breakdown of all parts of each individual +attribute's data. Full raw data interpretation only +available on select devices. +.IP +NOTE: Migration to device statistics is recommended. +.TP +\fB\-\-smartAttributeAutosave\fR [ enable | disable ] +(SATA Only) .IP Use this option to enable or disable SMART attribute auto\-save on an ATA drive. Note: This command is declared obsolete in ACS4. .TP -\fB\-\-smartAutoOffline\fR [ enable | disable ] (SATA Only) +\fB\-\-smartAutoOffline\fR [ enable | disable ] +(SATA Only) .IP Use this option to enable or disable SMART auto\-off\-line feature on an ATA drive. @@ -262,11 +410,12 @@ Use "summary" to view the summary SMART error log (last 5 entries) Use "comprehensive" to view all the entires the drive has available. Specifying "comprehensive" will automatically pull the ext error log on drives that support 48bit LBAs. -.br Note: The summary error log will truncate 48bit commands, so some information -will be missing to desribe the operation of certain commands. +.IP +will be missing to describe the operation of certain commands. .TP -\fB\-\-smartErrorLogFormat\fR [ raw | detailed ] (SATA Only) +\fB\-\-smartErrorLogFormat\fR [ raw | detailed ] +(SATA Only) .IP Use this option to change the format of the output from the \fB\-\-showSMARTErrorLog\fR option. The default mode is "detailed" @@ -275,11 +424,9 @@ option. The default mode is "detailed" .IP This option will show SMART information reported by a given device. -.PP +.IP SAS Only: -.br ========= -.br \fB\-\-defectFormat\fR [ # | shortBlock | longBlock | xbfi | xchs | bfi | chs ] (SAS Only) .IP This option set the format of the defects to output. @@ -287,290 +434,94 @@ Not all drives will support all defect modes! SSDs will only support block modes! Arguments: (name | #) .IP -.br shortBlock | 0 \- show the defects in short block address mode (drives < 32bit LBA) -.br xbfi | 1 \- show the defects in extended bytes from index mode -.br xchs | 2 \- show the defects in extended physical cylinder\-head\-sector mode -.br longBlock | 3 \- show the defects in long block address mode (drives > 32bit LBA) -.br bfi | 4 \- show the defects in bytes from index mode -.br chs | 5 \- show the defects in physical cylinder\-head\-sector mode .TP -\fB\-\-setMRIE\fR [ default | 0 \- 6 ] (SAS Only) (SEAGATE Only) +\fB\-\-setMRIE\fR [ default | 0 \- 6 ] +(SAS Only) .IP Use this option to change the MRIE mode on the informational exceptions mode page. -.IP +.TP default \- set to the drive default -.br 0 \- disable exception reporting -.br 1 \- Asynchronous reporting (obsolete) -.br 2 \- Establish unit attention condition -.br 3 \- Conditionally generate recovered error -.br 4 \- Unconditionally generate recovered error -.br 5 \- Generate no sense -.br 6 \- Report on request .TP -\fB\-\-showSCSIDefects\fR [ p | g | pg ] (SAS Only) +WARNING: Changing MRIE may affect all LUNs/namespaces for devices +with multiple logical units or namespaces. +.TP +\fB\-\-showSCSIDefects\fR [ p | g | pg ] +(SAS Only) .IP This option will display the SCSI defects on the screen. The arguments to this will tell whether to get the grown, primary, or primary and grown defects from the drive. Use the \fB\-\-defectFormat\fR option to specify the mode to display the defects. If no mode is specified, physical cylinder\-head\-sector mode is assumed -.br Arguments: .IP p \- use this option to pull and display the primary (factory) defects -.br g \- use this option to pull and display the grown (reallocated) defects .IP The above options can be combined to pull and display both defect lists. -.PP -Utility Options -.br -=============== -.HP -\fB\-\-echoCommandLine\fR -.IP -Echo the command line entered into the utility on the screen. -.HP -\fB\-\-enableLegacyUSBPassthrough\fR -.IP -Only use this option on old USB or IEEE1394 (Firewire) -products that do not otherwise work with the tool. -This option will enable a trial and error method that -attempts sending various ATA Identify commands through -vendor specific means. Because of this, certain products -that may respond in unintended ways since they may interpret -these commands differently than the bridge chip the command -was designed for. -.HP -\fB\-\-forceATA\fR -.IP -Using this option will force the current drive to -be treated as a ATA drive. Only ATA commands will -be used to talk to the drive. -.TP -\fB\-\-forceATADMA\fR (SATA Only) -.IP -Using this option will force the tool to issue SAT -commands to ATA device using the protocol set to DMA -whenever possible (on DMA commands). -This option can be combined with \fB\-\-forceATA\fR -.TP -\fB\-\-forceATAPIO\fR (SATA Only) -.IP -Using this option will force the tool to issue PIO -commands to ATA device when possible. This option can -be combined with \fB\-\-forceATA\fR -.TP -\fB\-\-forceATAUDMA\fR (SATA Only) -.IP -Using this option will force the tool to issue SAT -commands to ATA device using the protocol set to UDMA -whenever possible (on DMA commands). -This option can be combined with \fB\-\-forceATA\fR -.HP -\fB\-\-forceSCSI\fR -.IP -Using this option will force the current drive to -be treated as a SCSI drive. Only SCSI commands will -be used to talk to the drive. -.HP -\fB\-h\fR, \fB\-\-help\fR -.IP -Show utility options and example usage (this output you see now) -Please report bugs/suggestions to seaboard@seagate.com. -Include the output of \fB\-\-version\fR information in the email. -.HP -\fB\-\-license\fR .IP -Display the Seagate End User License Agreement (EULA). -.HP -\fB\-\-modelMatch\fR [model Number] -.IP -Use this option to run on all drives matching the provided -model number. This option will provide a closest match although -an exact match is preferred. Ex: ST500 will match ST500LM0001 -.HP -\fB\-\-onlyFW\fR [firmware revision] -.IP -Use this option to run on all drives matching the provided -firmware revision. This option will only do an exact match. -.HP -\fB\-\-onlySeagate\fR -.IP -Use this option to match only Seagate drives for the options -provided -.HP -\fB\-q\fR, \fB\-\-quiet\fR -.IP -Run openSeaChest_SMART in quiet mode. This is the same as -\fB\-v\fR 0 or \fB\-\-verbose\fR 0 -.HP -\fB\-\-sat12byte\fR -.IP -This forces the lower layer code to issue SAT spec -ATA Pass\-through 12 byte commands when possible instead -of 16 byte commands. By default, 16 byte commands are -always used for ATA Pass\-through. -.HP -\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] -.IP -Show verbose information. Verbosity levels are: -.br -0 \- quiet -.br -1 \- default -.br -2 \- command descriptions -.br -3 \- command descriptions and values -.br -4 \- command descriptions, values, and data buffers -.br -Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 -.HP -\fB\-V\fR, \fB\-\-version\fR +NVMe Only: +========= +\fB\-\-showNvmeHealth\fR (NVMe Only) .IP -Show openSeaChest_SMART version and copyright information & exit +The drive will display the NVMe Health log (also called +SMART log). All standardized fields will be printed to the +screen for the device. .PP -Data Destructive Commands (Seagate only) -.br -======================================== -.TP +Data Destructive Commands +========================= +.HP \fB\-\-dstAndClean\fR .IP Runs DST, then checks for an error and repairs the error if possible. This continues until all errors reported by DST are fixed, or when the error limit is reached. The default limit is 50 errors. -.PP -Return codes -.br -============ .IP -Generic/Common exit codes -.br -0 = No Error Found -.br -1 = Error in command line options -.br -2 = Invalid Device Handle or Missing Device Handle -.br -3 = Operation Failure -.br -4 = Operation not supported -.br -5 = Operation Aborted -.br -6 = File Path Not Found -.br -7 = Cannot Open File -.br -8 = File Already Exists -.br -Anything else = unknown error +openSeaChest_SMART \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_SMART Version: 2.1.1\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:49:22 2022 User: tyler .PP -.PP -.br -========================================================================================== -.br -openSeaChest_SMART \- Seagate drive utilities \- NVMe Enabled -.br -Copyright (c) 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br ========================================================================================== -.br Version Info for openSeaChest_SMART: .IP -Utility Version: 1.12.0 -.br -opensea\-common Version: 1.18.0 -.br -opensea\-transport Version: 1.19.2 -.br -opensea\-operations Version: 1.23.0 -.br -Build Date: Feb 28 2019 -.br +Utility Version: 2.1.1 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 Compiled Architecture: X86_64 -.br Detected Endianness: Little Endian -.br Compiler Used: GCC -.br -Compiler Version: 4.4.7 -.br +Compiler Version: 11.2.0 Operating System Type: Linux -.br -Operating System Version: 4.14.10\-0 -.br -Operating System Name: TinyCoreLinux 9.0 -.br -Edition: JBOD, NVMe -.br -RAID Support: none - -.SH "REPORTING BUGS" -Please report bugs/suggestions to seaboard at seagate dot com. Include the output of -\fB\-\--version\fR information in the email. See the user guide section 'General Usage -Hints' for information about saving output to a log file. - -.SH COPYRIGHT -Copyright \(co 2014\-2019 Seagate Technology LLC and/or its Affiliates, All Rights Reserved -.br -BINARIES and SOURCE CODE files of the openSeaChest open source project have -been made available to you under the Mozilla Public License 2.0 (MPL). Mozilla -is the custodian of the Mozilla Public License ("MPL"), an open source/free -software license. -.br -https://www.mozilla.org/en-US/MPL/ -.br -You -can run -the command option \fB\-\--license\fR to display the agreement and acknowledgements of various open -source tools and projects used with SeaChest Utilities. -.PP -This software uses open source packages obtained with permission from the -relevant parties. For a complete list of open source components, sources and -licenses, please see our Linux USB Boot Maker Utility FAQ for additional -information. -.PP -SeaChest Utilities use libraries from the opensea source code projects. These -projects are maintained at http://github.com/seagate. -The libraries in use are opensea-common, opensea-transport and -opensea-operations. These libraries are available under the Mozilla Public -License 2.0. - - -.SH WEB SITE -There are web pages discussing this software at -.br -https://github.com/Seagate/openSeaChest +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS .SH "SEE ALSO" -.B openSeaChest_Basics, openSeaChest_Configure, openSeaChest_Erase, openSeaChest_Firmware, openSeaChest_Format, openSeaChest_GenericTests, openSeaChest_Info, openSeaChest_Logs, openSeaChest_PowerControl, openSeaChest_SMART - -The full documentation and version history for +The full documentation for .B openSeaChest_SMART -is maintained as a simple text file with this name: -.br -.B openSeaChest_SMART..txt -The number part of the name will change with each revision. -.br -The command -.IP -.B less /openSeaChest_SMART..txt +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_SMART +programs are properly installed at your site, the command +.IP +.B info openSeaChest_SMART .PP should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_Security.8 b/docs/man/man8/openSeaChest_Security.8 new file mode 100644 index 00000000..c2d01600 --- /dev/null +++ b/docs/man/man8/openSeaChest_Security.8 @@ -0,0 +1,377 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_SECURITY "1" "July 2022" "openSeaChest_Security ==========================================================================================" "User Commands" +.SH NAME +openSeaChest_Security \- manual page for openSeaChest_Security ========================================================================================== +.SH DESCRIPTION +========================================================================================== +.IP +openSeaChest_Security \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Security Version: 3.0.5\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:49:11 2022 User: tyler +.PP +========================================================================================== +Usage +===== +.IP +openSeaChest_Security [\-d ] {arguments} {options} +.PP +Examples +======== +.IP +openSeaChest_Security \fB\-\-scan\fR +openSeaChest_Security \fB\-d\fR /dev/sg? \fB\-i\fR +.PP +Return codes +============ +.IP +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error +.PP +Utility Options +=============== +.HP +\fB\-\-echoCommandLine\fR +.IP +Echo the command line entered into the utility on the screen. +.HP +\fB\-\-enableLegacyUSBPassthrough\fR +.IP +Only use this option on old USB or IEEE1394 (Firewire) +products that do not otherwise work with the tool. +This option will enable a trial and error method that +attempts sending various ATA Identify commands through +vendor specific means. Because of this, certain products +that may respond in unintended ways since they may interpret +these commands differently than the bridge chip the command +was designed for. +.HP +\fB\-\-forceATA\fR +.IP +Using this option will force the current drive to +be treated as a ATA drive. Only ATA commands will +be used to talk to the drive. +.TP +\fB\-\-forceATADMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to DMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAPIO\fR +(SATA Only) +.IP +Using this option will force the tool to issue PIO +commands to ATA device when possible. This option can +be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAUDMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to UDMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.HP +\fB\-\-forceSCSI\fR +.IP +Using this option will force the current drive to +be treated as a SCSI drive. Only SCSI commands will +be used to talk to the drive. +.HP +\fB\-h\fR, \fB\-\-help\fR +.IP +Show utility options and example usage (this output you see now) +Please report bugs/suggestions to seaboard@seagate.com. +Include the output of \fB\-\-version\fR information in the email. +.HP +\fB\-\-license\fR +.IP +Display the Seagate End User License Agreement (EULA). +.HP +\fB\-\-modelMatch\fR [model Number] +.IP +Use this option to run on all drives matching the provided +model number. This option will provide a closest match although +an exact match is preferred. Ex: ST500 will match ST500LM0001 +.HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP +\fB\-\-onlyFW\fR [firmware revision] +.IP +Use this option to run on all drives matching the provided +firmware revision. This option will only do an exact match. +.HP +\fB\-\-onlySeagate\fR +.IP +Use this option to match only Seagate drives for the options +provided +.HP +\fB\-q\fR, \fB\-\-quiet\fR +.IP +Run openSeaChest_Security in quiet mode. This is the same as +\fB\-v\fR 0 or \fB\-\-verbose\fR 0 +.HP +\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +.IP +Show verbose information. Verbosity levels are: +0 \- quiet +1 \- default +2 \- command descriptions +3 \- command descriptions and values +4 \- command descriptions, values, and data buffers +Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 +.HP +\fB\-V\fR, \fB\-\-version\fR +.IP +Show openSeaChest_Security version and copyright information & exit +.PP +Utility arguments +================= +.HP +\fB\-d\fR, \fB\-\-device\fR deviceHandle +.IP +Use this option with most commands to specify the device +handle on which to perform an operation. Example: /dev/sg? +.HP +\fB\-\-displayLBA\fR [LBA] +.IP +This option will read and display the contents of +the specified LBA to the screen. The display format +is hexadecimal with an ASCII translation on the side +(when available). +.HP +\fB\-F\fR, \fB\-\-scanFlags\fR [option list] +.IP +Use this option to control the output from scan with the +options listed below. Multiple options can be combined. +.TP +ata \- show only ATA (SATA) devices +usb \- show only USB devices +scsi \- show only SCSI (SAS) devices +nvme \- show only NVMe devices +interfaceATA \- show devices on an ATA interface +interfaceUSB \- show devices on a USB interface +interfaceSCSI \- show devices on a SCSI or SAS interface +interfaceNVME = show devices on an NVMe interface +sd \- show sd device handles +sgtosd \- show the sd and sg device handle mapping +.HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP +\fB\-S\fR, \fB\-\-Scan\fR +.IP +This option is the same as \fB\-\-scan\fR or \fB\-s\fR, +however it will also perform a low level rescan to pick up +other devices. This low level rescan may wake devices from low +power states and may cause the OS to re\-enumerate them. +Use this option when a device is plugged in and not discovered in +a normal scan. +NOTE: A low\-level rescan may not be available on all interfaces or +all OSs. The low\-level rescan is not guaranteed to find additional +devices in the system when the device is unable to come to a ready state. +.HP +\fB\-\-SATInfo\fR +.IP +Displays SATA device information on any interface +using both SCSI Inquiry / VPD / Log reported data +(translated according to SAT) and the ATA Identify / Log +reported data. +.HP +\fB\-\-testUnitReady\fR +.IP +Issues a SCSI Test Unit Ready command and displays the +status. If the drive is not ready, the sense key, asc, +ascq, and fru will be displayed and a human readable +translation from the SPC spec will be displayed if one +is available. +.IP +SATA Only: +========= +\fB\-\-ataSATsecurityProtocol\fR [enable | disable] (SATA only) +.IP +This option can be used to force enable or disable using the +ATA security protocol as specified in the SAT specification. +By default, the tool will use this method when it is supported +to allow the SATL to understand and manage the security commands +being performed and prevent other issues. +.TP +\fB\-\-ataSecFreeze\fR +(SATA only) +.IP +This option will send the ATA security freezelock command to +a device. This command prevents all other ATA security commands +from being processed until the next reset or power cycle. +.TP +\fB\-\-ataSecPassword\fR ["ASCII password" | SeaChest | empty] +(SATA only) +.IP +Use this option to specify a password to use with an ATA security +operation. If specifying a password with spaces, quotes must be used. +If SeaChest is given, the default SeaChest password will be used. +If empty is given, an empty password will be used. +Examples: +.IP +"This is a valid password" +ThisIsAlsoValid +"This password uses \e"quotes\e" +"This password is \e/\e/eird" +.TP +\fB\-\-ataSecPassType\fR [user | master] +(SATA only) +.IP +Use this option to specify if the password being given with the +\fB\-\-ataSecPassword\fR option is a user or a master password. +If this option is not provided, user is assumed. +.HP +\fB\-\-ataSecPWMod\fR [byteswapped | zeropad | spacepad | fpad | leftAlign | rightAlign | uppercase | lowercase | invertcase] (SATA Only) +.IP +Use this option to have the utility make modifications to +the ATA security password to attempt other various ways it may +be sent by a system bios. These are not guaranteed to work, but +may help unlock a drive that was locked by a BIOS that encoded +the password in a unique way. +This option can be presented multiple times to select multiple modificaitons. +EX: \fB\-\-ataSecPWMod\fR byteswapped \fB\-\-ataSecPWMod\fR invertcase +.IP +byteswapped \- byteswaps the password. EX: blah \-> lbha +zeropad \- zero pads the password if less than 32 characters +spacepad \- space pads the password if less than 32 characters +fpad \- pads the passwords with Fh (all 1's) if less than 32characters +leftAlign \- left aligns the password in the buffer +rightAlign \- right aligns the password in the buffer +uppercase \- sends the password as all uppercase +lowercase \- sends the password as all lowercase +invertcase \- switches uppercase for lower, and lowercase for upper +.TP +\fB\-\-ataSecurityInfo\fR +(SATA only) +.IP +This option shows information about the ATA security +feature on ATA devices. It will show the security state and +flags related to the state, Master password capability & ID, +time to perform a secure erase, whether user data is encrypted, +and whether sanitize can override ATA security to repurpose a drive. +.TP +\fB\-\-disableATASecPW\fR +(SATA Only) +.IP +Use this option to disable an ATA security password. +If the drive is in high security mode, either user or +master password may be provided. In maximum security mode +only the user password can be provided to unlock and disable the +ATA security password. The master may only be used to erase the drive +in maximum security mode. +Use the \fB\-\-ataSecPassword\fR option to provide the password to use and +\fB\-\-ataSecPassType\fR to specify whether it is the user or master password. +If a drive lost power during an ATA Security Erase in +openSeaChest_Security, then providing \fB\-\-ataSecPassword\fR SeaChest +will use the default SeaChest password used during the erase. +.IP +To disable a password set by a BIOS, the BIOS must have set the +.IP +password in ASCII. A BIOS may choose to hash or modify the +password typed in the configuration however it +chooses and this utility has no idea how to match what +the BIOS has done so it may not always work to remove +a password set by something other than this utility. +.TP +\fB\-\-unlockATASec\fR +(SATA only) +.IP +Use this option along with the \fB\-\-ataSecPassword\fR option and +\fB\-\-ataSecPassType\fR option to unlock a drive with the provided password. +If the drive is in maximum security mode, only the user password +may be used to unlock the device. +.PP +Data Destructive Commands (Seagate only) +======================================== +.IP +SATA Only: +========= +\fB\-\-ataSecureErase\fR [normal | enhanced] (SATA only) +.IP +Use "normal" to start a standard ATA security erase +or "enhanced" to start an enhanced ATA security erase. +.IP +ATA Security Erase takes a very long time to complete at +approximately three (3) hours per Tera\-byte (HDD). Some Seagate +SED models will perform a quick cryptographic erase in enhanced +mode and the time for completion is reported as 2 minutes by +the drive, but will take only seconds. This industry +standard command begins by locking the drive with a temporary +password which is cleared at the end of the erasure. Do not run +this command unless you have ample time to allow it to run +through to the end. If the procedure is interrupted prior to +completion, then the drive will remain in a locked state and +you must manually restart from the beginning again. The +tool will attempt to automatically clear the password that was set +upon failure. The default password used by the tool is +"SeaChest", plain ASCII letters without the quotes +.IP +* normal writes binary zeros (0) or ones (1) to all user +data areas. +.IP +* enhanced will fill all user data areas and reallocated +user data with a vendor specific pattern. Some Seagate +Instant Secure Erase will perform a cryptographic +erase instead of an overwrite. +.IP +openSeaChest_Security \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_Security Version: 3.0.5\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:49:11 2022 User: tyler +.PP +========================================================================================== +Version Info for openSeaChest_Security: +.IP +Utility Version: 3.0.5 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 +Compiled Architecture: X86_64 +Detected Endianness: Little Endian +Compiler Used: GCC +Compiler Version: 11.2.0 +Operating System Type: Linux +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS +.SH "SEE ALSO" +The full documentation for +.B openSeaChest_Security +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_Security +programs are properly installed at your site, the command +.IP +.B info openSeaChest_Security +.PP +should give you access to the complete manual. diff --git a/docs/man/man8/openSeaChest_ZBD.8 b/docs/man/man8/openSeaChest_ZBD.8 new file mode 100644 index 00000000..f6d79812 --- /dev/null +++ b/docs/man/man8/openSeaChest_ZBD.8 @@ -0,0 +1,288 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1. +.TH OPENSEACHEST_ZBD "1" "July 2022" "openSeaChest_ZBD ==========================================================================================" "User Commands" +.SH NAME +openSeaChest_ZBD \- manual page for openSeaChest_ZBD ========================================================================================== +.SH DESCRIPTION +========================================================================================== +.IP +openSeaChest_ZBD \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_ZBD Version: 2.0.3\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:49:34 2022 User: tyler +.PP +========================================================================================== +Usage +===== +.IP +openSeaChest_ZBD [\-d ] {arguments} {options} +.PP +Examples +======== +.IP +openSeaChest_ZBD \fB\-\-scan\fR +openSeaChest_ZBD \fB\-d\fR /dev/sg? \fB\-i\fR +.PP +Return codes +============ +.IP +Generic/Common exit codes +0 = No Error Found +1 = Error in command line options +2 = Invalid Device Handle or Missing Device Handle +3 = Operation Failure +4 = Operation not supported +5 = Operation Aborted +6 = File Path Not Found +7 = Cannot Open File +8 = File Already Exists +9 = Need Elevated Privileges +Anything else = unknown error +.PP +Utility Options +=============== +.HP +\fB\-\-echoCommandLine\fR +.IP +Echo the command line entered into the utility on the screen. +.HP +\fB\-\-enableLegacyUSBPassthrough\fR +.IP +Only use this option on old USB or IEEE1394 (Firewire) +products that do not otherwise work with the tool. +This option will enable a trial and error method that +attempts sending various ATA Identify commands through +vendor specific means. Because of this, certain products +that may respond in unintended ways since they may interpret +these commands differently than the bridge chip the command +was designed for. +.HP +\fB\-\-forceATA\fR +.IP +Using this option will force the current drive to +be treated as a ATA drive. Only ATA commands will +be used to talk to the drive. +.TP +\fB\-\-forceATADMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to DMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAPIO\fR +(SATA Only) +.IP +Using this option will force the tool to issue PIO +commands to ATA device when possible. This option can +be combined with \fB\-\-forceATA\fR +.TP +\fB\-\-forceATAUDMA\fR +(SATA Only) +.IP +Using this option will force the tool to issue SAT +commands to ATA device using the protocol set to UDMA +whenever possible (on DMA commands). +This option can be combined with \fB\-\-forceATA\fR +.HP +\fB\-\-forceSCSI\fR +.IP +Using this option will force the current drive to +be treated as a SCSI drive. Only SCSI commands will +be used to talk to the drive. +.HP +\fB\-h\fR, \fB\-\-help\fR +.IP +Show utility options and example usage (this output you see now) +Please report bugs/suggestions to seaboard@seagate.com. +Include the output of \fB\-\-version\fR information in the email. +.HP +\fB\-\-license\fR +.IP +Display the Seagate End User License Agreement (EULA). +.HP +\fB\-\-modelMatch\fR [model Number] +.IP +Use this option to run on all drives matching the provided +model number. This option will provide a closest match although +an exact match is preferred. Ex: ST500 will match ST500LM0001 +.HP +\fB\-\-noBanner\fR +.IP +Use this option to suppress the text banner that displays each time +openSeaChest is run. +.HP +\fB\-\-onlyFW\fR [firmware revision] +.IP +Use this option to run on all drives matching the provided +firmware revision. This option will only do an exact match. +.HP +\fB\-\-onlySeagate\fR +.IP +Use this option to match only Seagate drives for the options +provided +.HP +\fB\-q\fR, \fB\-\-quiet\fR +.IP +Run openSeaChest_ZBD in quiet mode. This is the same as +\fB\-v\fR 0 or \fB\-\-verbose\fR 0 +.HP +\fB\-v\fR [0\-4], \fB\-\-verbose\fR [0 | 1 | 2 | 3 | 4] +.IP +Show verbose information. Verbosity levels are: +0 \- quiet +1 \- default +2 \- command descriptions +3 \- command descriptions and values +4 \- command descriptions, values, and data buffers +Example: \fB\-v\fR 3 or \fB\-\-verbose\fR 3 +.HP +\fB\-V\fR, \fB\-\-version\fR +.IP +Show openSeaChest_ZBD version and copyright information & exit +.PP +Utility Arguments +================= +.HP +\fB\-d\fR, \fB\-\-device\fR deviceHandle +.IP +Use this option with most commands to specify the device +handle on which to perform an operation. Example: /dev/sg? +.HP +\fB\-F\fR, \fB\-\-scanFlags\fR [option list] +.IP +Use this option to control the output from scan with the +options listed below. Multiple options can be combined. +.TP +ata \- show only ATA (SATA) devices +usb \- show only USB devices +scsi \- show only SCSI (SAS) devices +nvme \- show only NVMe devices +interfaceATA \- show devices on an ATA interface +interfaceUSB \- show devices on a USB interface +interfaceSCSI \- show devices on a SCSI or SAS interface +interfaceNVME = show devices on an NVMe interface +sd \- show sd device handles +sgtosd \- show the sd and sg device handle mapping +.HP +\fB\-i\fR, \fB\-\-deviceInfo\fR +.IP +Show information and features for the storage device +.HP +\fB\-s\fR, \fB\-\-scan\fR +.IP +Scan the system and list all storage devices with logical +/dev/sg? assignments. Shows model, serial and firmware +numbers. If your device is not listed on a scan immediately +after booting, then wait 10 seconds and run it again. +.HP +\fB\-S\fR, \fB\-\-Scan\fR +.IP +This option is the same as \fB\-\-scan\fR or \fB\-s\fR, +however it will also perform a low level rescan to pick up +other devices. This low level rescan may wake devices from low +power states and may cause the OS to re\-enumerate them. +Use this option when a device is plugged in and not discovered in +a normal scan. +NOTE: A low\-level rescan may not be available on all interfaces or +all OSs. The low\-level rescan is not guaranteed to find additional +devices in the system when the device is unable to come to a ready state. +.HP +\fB\-\-SATInfo\fR +.IP +Displays SATA device information on any interface +using both SCSI Inquiry / VPD / Log reported data +(translated according to SAT) and the ATA Identify / Log +reported data. +.HP +\fB\-\-testUnitReady\fR +.IP +Issues a SCSI Test Unit Ready command and displays the +status. If the drive is not ready, the sense key, asc, +ascq, and fru will be displayed and a human readable +translation from the SPC spec will be displayed if one +is available. +.HP +\fB\-\-closeZone\fR +.IP +Use this option to close a zone specified with the \fB\-\-zoneID\fR option +.HP +\fB\-\-finishZone\fR +.IP +Use this option to finish a zone specified with the \fB\-\-zoneID\fR option +.HP +\fB\-\-maxZones\fR [count] +.IP +Use this option to set a maximum number of zones to display with +the \fB\-\-reportZones\fR option. +.HP +\fB\-\-openZone\fR +.IP +Use this option to open a zone specified with the \fB\-\-zoneID\fR option +.HP +\fB\-\-reportZones\fR [all | empty | implicitOpen | explicitOpen | closed | +.IP +full | readOnly | offline | resetRecommended | nonSeqResourceAvailable | allNonWP] +.IP +Use this option to display the zones of a specific type, where they start, +the length of the zones, and where the write pointer is at. +Combine this option with \fB\-\-zoneID\fR and \fB\-\-maxZones\fR +To show a different list/subset of the zones on the drive. +Ex: \fB\-\-reportZones\fR empty \fB\-\-zoneID\fR 123456 \fB\-\-maxZones\fR 30 +*all \- show all zones +*empty \- show only empty zones +*implicitOpen \- show only implicitly opened zones +*explicitOpen \- show only explicitly opened zones +*closed \- show only closed zones +*full \- show only full zones +*readOnly \- show only read only zones +*offline \- show only offline zones +*resetRecommended \- show only zones that have the reset recommended bit set +*nonSeqResourceAvailable \- show only zones with a non sequential access resource available +*allNonWp \- show all non\-write pointer zones. +.HP +\fB\-\-resetWritePointer\fR +.IP +Use this option to reset a write pointer at the zone specified with the \fB\-\-zoneID\fR option +.HP +\fB\-\-zoneID\fR [LBA/zone ID | all] +.IP +Use this option to specify a zone ID for use with other options +such as \fB\-\-reportZones\fR, \fB\-\-closeZone\fR, \fB\-\-finishZone\fR, \fB\-\-openZone\fR, \fB\-\-resetWritePointer\fR. A zone ID is an LBA at the start of a specified zone. +Use "all" with the options listed above to apply an action +to all zones on the device. +.IP +openSeaChest_ZBD \- openSeaChest drive utilities \- NVMe Enabled +Copyright (c) 2014\-2022 Seagate Technology LLC and/or its Affiliates, All Rights Reserved +openSeaChest_ZBD Version: 2.0.3\-3_2_1 X86_64 +Build Date: Jul 21 2022 +Today: Thu Jul 21 16:49:34 2022 User: tyler +.PP +========================================================================================== +Version Info for openSeaChest_ZBD: +.IP +Utility Version: 2.0.3 +opensea\-common Version: 1.22.0 +opensea\-transport Version: 3.2.1 +opensea\-operations Version: 3.1.1 +Build Date: Jul 21 2022 +Compiled Architecture: X86_64 +Detected Endianness: Little Endian +Compiler Used: GCC +Compiler Version: 11.2.0 +Operating System Type: Linux +Operating System Version: 5.15.0\-39 +Operating System Name: Ubuntu 22.04 LTS +.SH "SEE ALSO" +The full documentation for +.B openSeaChest_ZBD +is maintained as a Texinfo manual. If the +.B info +and +.B openSeaChest_ZBD +programs are properly installed at your site, the command +.IP +.B info openSeaChest_ZBD +.PP +should give you access to the complete manual. From bdca0f158f74260d0d81992937ab75f9ce1410af Mon Sep 17 00:00:00 2001 From: Tyler Erickson Date: Fri, 29 Jul 2022 14:52:06 -0600 Subject: [PATCH 66/66] lib: Pointing to master to finish release Signed-off-by: Tyler Erickson --- subprojects/opensea-common | 2 +- subprojects/opensea-operations | 2 +- subprojects/opensea-transport | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/subprojects/opensea-common b/subprojects/opensea-common index a2155bb5..a0eaa133 160000 --- a/subprojects/opensea-common +++ b/subprojects/opensea-common @@ -1 +1 @@ -Subproject commit a2155bb5d1f45e50cc2e0158ed183d15e12de6bd +Subproject commit a0eaa13345792708922fa5745d258677b4b24cc8 diff --git a/subprojects/opensea-operations b/subprojects/opensea-operations index f9eab78b..ac3fe5ab 160000 --- a/subprojects/opensea-operations +++ b/subprojects/opensea-operations @@ -1 +1 @@ -Subproject commit f9eab78b3cc349a74a1878b484ca27812506357b +Subproject commit ac3fe5aba6839bdb24a16522132eb790cef442aa diff --git a/subprojects/opensea-transport b/subprojects/opensea-transport index f09d599a..3b225ab2 160000 --- a/subprojects/opensea-transport +++ b/subprojects/opensea-transport @@ -1 +1 @@ -Subproject commit f09d599a992e4e12e2537e9e5592c8bdf799dc0a +Subproject commit 3b225ab2d04689c8df28c1ea7c3eeac122c9cac5