Development
[synergy] building synergy from source on windows
건이두
2019. 7. 12. 20:12
728x90
I updated synergy build instructions like below
Example
- Windows 10 SDK version is 10.0.18362.0
- Open C:\Program Files (x86)\Windows Kits\10\SDKManifest.xml
- Find 'PlatformIdentity = "UAP, Version=10.0.18362.0"'
- Visual studio 2019 community
- Your source path is "c:<path>\synergy-core"
- Your host is x64
- Will build as x64 binary
cd "c:\<path>\synergy-core"
mkdir build
cd build
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 10.0.18362.0
cmake -G "Visual Studio 16 2019" -DCMAKE_BUILD_TYPE=Debug ..
msbuild synergy-core.sln /p:Platform="x64" /p:Configuration=Debug /m
cd ..
copy ext\openssl\windows\x64\bin\* build\
Here is my revision of wiki.
https://github.com/symless/synergy-core/wiki/Compiling/6a96ed5d639e9681f314d56b4a8a9c86977c7711
728x90