Release build and packaging
This commit is contained in:
@@ -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 ... ??
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user