5 Commits
0.1.3 ... main

Author SHA1 Message Date
5aacae3710 fixed page numbering 2026-02-23 21:32:56 +01:00
9a21e6d20b fixed bugs 2026-02-23 19:31:40 +01:00
639aac68ca added version number to build 2026-02-23 16:11:23 +01:00
4d00936719 Fixed first issue, added release script 2026-02-23 15:19:15 +01:00
b03d9bf998 updated include to be more scoped 2026-02-23 14:08:18 +01:00
383 changed files with 923 additions and 790 deletions

View File

@@ -87,8 +87,13 @@ target_link_options(${TARGET_NAME} PRIVATE
$<$<CONFIG:Release>:-flto=auto>
)
if(NOT DEFINED APP_VERSION)
set(APP_VERSION "0.0.0")
endif()
target_compile_definitions(${TARGET_NAME} PRIVATE
APPLICATION_NAME="${TARGET_NAME}"
APP_VERSION="${APP_VERSION}"
SQLITE_THREADSAFE=1 # build sqlite with thread safty
ASIO_STANDALONE # use asio without boost
CROW_ENABLE_COMPRESSION # enable compression part of crow

View File

@@ -1,7 +1,7 @@
# Maintainer: Lukas Forsberg lukas96.forsberg@gmail.com
pkgname=shadowrun-server
pkgver=0.1.3
pkgver=0.1.4
pkgrel=1
arch=('x86_64')
depends=()
@@ -18,7 +18,8 @@ build() {
cmake -S "${srcdir}" \
-B build \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_INSTALL_PREFIX=/usr \
-DAPP_VERSION=${pkgver}
cmake --build build
}

Some files were not shown because too many files have changed in this diff Show More