Release build and packaging

This commit is contained in:
Krzosa Karol
2026-01-07 22:26:18 +01:00
parent 239126db70
commit 101fed6d7d
5 changed files with 23 additions and 15 deletions

View File

@@ -2,9 +2,7 @@
! From a user (novice) point of view, how does it look like?
- Buffer edit history separate from caret history (tagging history blocks with carets???)
- Search and replace
- We need regex for: [FormatCode matching, IsCode matching,
- IndentKind has issues with stuff still like cleaning whitespace etc.
- Remedybg commands integrated! (like clicking f5 and opening up the window)
- Macros
- ctrl-e started doing no-ops again ... ??

View File

@@ -5,12 +5,8 @@ struct LocationTrace {
int line;
};
#if DEBUG_BUILD
thread_local LocationTrace LocationTraceO;
#define LOCATION_TRACE (LocationTraceO.file = __FILE__, LocationTraceO.line = __LINE__)
#else
#define LOCATION_TRACE
#endif
const int AllocatorKind_Allocate = 1;
const int AllocatorKind_Deallocate = 2;

View File

@@ -8,11 +8,7 @@ bool WaitForEventsState = true;
bool RunGCThisFrame;
bool SearchCaseSensitive = false;
bool SearchWordBoundary = false;
#if OS_WINDOWS
bool BreakOnError = true;
#else
bool BreakOnError = false;
#endif
WindowID WindowIDs;
ViewID ViewIDs;

View File

@@ -1,4 +1,4 @@
#if 1
#if BUILD_DEBUG
// SPDX-FileCopyrightText: © 2023 Phillip Trudeau-Tavara <pmttavara@protonmail.com>
// SPDX-License-Identifier: MIT
@@ -404,6 +404,7 @@ struct ProfileScopeClass {
~ProfileScopeClass() { EndProfileScope(); }
};
#else
#define ProfileScopeEx(name)
#define ProfileScope(name)
#define ProfileFunction()
#define BeginProfiler()