aboutsummaryrefslogtreecommitdiff
path: root/doc/Building/smolbote.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/Building/smolbote.md')
-rw-r--r--doc/Building/smolbote.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/Building/smolbote.md b/doc/Building/smolbote.md
new file mode 100644
index 0000000..e40132c
--- /dev/null
+++ b/doc/Building/smolbote.md
@@ -0,0 +1,30 @@
+## Customizing
+Set through vendor.cmake.
+
+### Configuration defaults
+
+### Version information
+Building without git metadata requires the version be set in vendor.cmake.
+
+
+## Building on Windows
+
+~~~sh
+set INSTALL_DIR="C:\projects\smolbote-install"
+mkdir %INSTALL_DIR%
+
+mkdir C:\projects\smolbote-build
+cd C:\projects\smolbote-build
+
+set QT="C:\Qt\5.11.0\msvc2017_64"
+set BOOST_ROOT="C:\Libraries\boost_1_66_0"
+set BOOST_LIBDIR="C:\Libraries\boost_1_66_0\lib64-msvc-14.1"
+cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% -DCMAKE_PREFIX_PATH=%QT%;%BOOST_ROOT% -DBOOST_ROOT=%BOOST_ROOT% -DBOOST_LIBRARYDIR=%BOOST_LIBDIR% -DBoost_USE_STATIC_LIBS=On C:\projects\smolbote-hg
+cmake --build . --target poi --config Release
+cmake --build . --target install --config Release
+cd %INSTALL_DIR%
+C:\Qt\5.10.1\msvc2017_64\bin\windeployqt.exe bin\poi.exe
+
+7z a C:\projects\smolbote-hg\smolbote.7z %INSTALL_DIR%
+~~~
+