Download package from github release
mkdir build
cd build
cmake -DBUILD_ONLY="s3" ..
make
make install
sudo apt-get install qt5-base
- check pkg-config
- remove -Werror
- Install xcode from appstore
- install command tools
xcode-selector --install
OR
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
http://download.qt.io/official_release
mkdir build
cd build
cmake -DBUILD_ONLY="s3" ..
make
make install
qmake ..
make
- add deps macdeployqt S3Client.GUI -libpath=/usr/local/lib/
- build dmg http://stackoverflow.com/questions/37292756/how-to-create-a-dmg-file-for-a-app-for-mac
http://download.qt.io/official_release
- nuget to install aws-sdk-core/aws-sdk-s3
- current version
1.6.20060301.25
may cause a crash when ListObjects() was involed if an object starts with Chinese character
- current version
- OR build shared library manually (Recommended)
git clone https://github.com/aws/aws-sdk-cpp.git
git checkout 1.7.108
mkdir build
cd build
cmake .. -G "Visual Studio 15 Win64" -DCMAKE_BUILD_TYPE=Release -DBUILD_ONLY="s3" -DENABLE_TESTING=OFF
msbuild ALL_BUILD.vcxproj
msbuild INSTALL.vcxproj /p:Configuration=Release
If build aws-sdk-cpp library manually, please add the following properties in the project in Visual Studio:
Include Directories
C:\Program Files\aws-cpp-sdk-all\include
Library Directories
C:\Program Files\aws-cpp-sdk-all\bin
aws-cpp-sdk-core.lib
aws-cpp-sdk-s3.lib
USE_WINDOWS_DLL_SEMANTICS
USE_IMPORT_EXPORT