develop/examples/template: Post-SVN tidy

- Move source code from `trunk` into program root directory.
- Update build files and ASM include paths.
This commit is contained in:
2025-05-23 04:15:08 +01:00
parent f861b2020f
commit b565f7b807
5 changed files with 8 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
if tup.getconfig("NO_FASM") ~= "" then return end if tup.getconfig("NO_FASM") ~= "" then return end
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../../.." or tup.getconfig("HELPERDIR") HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../.." or tup.getconfig("HELPERDIR")
tup.include(HELPERDIR .. "/use_fasm.lua") tup.include(HELPERDIR .. "/use_fasm.lua")
add_include(tup.getvariantdir()) add_include(tup.getvariantdir())

View File

@@ -1,3 +1,9 @@
; SPDX-License-Identifier: NOASSERTION
;
; Text encoded with Code Page 866 - Cyrillic
; <--- description ---> ; <--- description --->
; compiler: FASM 1.67 ; compiler: FASM 1.67
; name: Basic window example for KolibriOS ; name: Basic window example for KolibriOS
@@ -9,7 +15,7 @@
; <--- include all KolibriOS stuff ---> ; <--- include all KolibriOS stuff --->
include "lang.inc" ; Language support for locales: ru_RU (CP866), fr_FR, en_US. include "lang.inc" ; Language support for locales: ru_RU (CP866), fr_FR, en_US.
include "..\..\..\..\macros.inc" include "..\..\..\macros.inc"
; <--- start of KolibriOS application ---> ; <--- start of KolibriOS application --->