Skip to content
Snippets Groups Projects
Commit fe26c16c authored by noasakurajin's avatar noasakurajin
Browse files

updating to libtrainsim 0.9.0

 These are all of the changes required to get the simulaotr working
 with libtrainsim 0.9.0 and no longer accepting older versions since
 they are no longer compatible.

 Also the data subproject is updated to the latest commit.
parent 33e8b6b7
Branches
Tags v0.9.0
No related merge requests found
Subproject commit f28cafa42da5f94c86f7b6c6db234d64f521de97
Subproject commit 3367a01600e0ecb1cd5a9c58eacaeb789469892f
......@@ -10,7 +10,7 @@ project(
'b_coverage=false',
'libtrainsim:build_full=true',
],
version:'0.8.0',
version:'0.9.0',
meson_version: '>= 0.54.0',
)
......@@ -44,7 +44,7 @@ if target_machine.cpu_family() == 'ppc' or target_machine.cpu_family() == 'ppc64
endif
libtrainsim_version = '0.7.0'
libtrainsim_version = '0.9.0'
deps = [
dependency('libtrainsim-full', required: true, fallback: 'libtrainsim', version : '>=' + libtrainsim_version),
......
name: libtrainsim # you probably want to 'snapcraft register <name>'
base: core20 # the base snap is the execution environment for this snap
version: '0.8.0' # just for humans, typically '1.2+git' or '1.3.2'
version: '0.9.0' # just for humans, typically '1.2+git' or '1.3.2'
summary: The reference implementaion of libtrainsim # 79 char long summary
description: |
This package contains builds of the reference implementation of libtrainsim with the date for one track.
......
......@@ -17,7 +17,7 @@ int main(int argc, char **argv){
}
//check if the libtrainsim version is high enough
const libtrainsim::core::version required_version{0,8,0};
const libtrainsim::core::version required_version{0,9,0};
assert((libtrainsim::core::lib_version >= required_version) && "libtrainsim version not high enogh!");
//check if singeltons are running
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment