From e658fb2a185e07c8143c0f98e6cd3c41791d6a84 Mon Sep 17 00:00:00 2001 From: Roy Falk Date: Wed, 16 Oct 2024 19:08:19 +0300 Subject: [PATCH 1/2] Add missing config.json to support #892 --- config.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 config.json diff --git a/config.json b/config.json new file mode 100644 index 00000000..10b74f3e --- /dev/null +++ b/config.json @@ -0,0 +1,10 @@ +{ +"general": {}, + +"graphics": { + "resolution_x": 2560, + "resolution_y": 1600, + "screen": 0 +}, +"advanced": {} +} From 06189b4d0fcacfc289a0d709b83cee9bb42ee94b Mon Sep 17 00:00:00 2001 From: Roy Falk Date: Sat, 19 Oct 2024 23:42:24 +0300 Subject: [PATCH 2/2] Add config.json to CMakeLists.txt --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f3562eaa..a718e1ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -174,6 +174,7 @@ INSTALL(FILES weapons.json DESTINATION share/vegastrike) # Linux specific locations from here on out. INSTALL(FILES vegastrike.config DESTINATION share/vegastrike) +INSTALL(FILES config.json DESTINATION share/vegastrike) INSTALL(FILES vegastrike.desktop DESTINATION share/applications) INSTALL(FILES vegasettings.desktop DESTINATION share/applications)