Added gui build flag

This commit is contained in:
2026-05-12 12:24:52 -05:00
parent 1351853527
commit 4117bc5dd4
9 changed files with 224 additions and 19 deletions

View File

@@ -2,6 +2,7 @@
CC := gcc CC := gcc
CFLAGS := -g -Wall -Wextra -Werror -pedantic -fno-omit-frame-pointer CFLAGS := -g -Wall -Wextra -Werror -pedantic -fno-omit-frame-pointer
DEPFLAGS = -MMD -MP DEPFLAGS = -MMD -MP
CI2_GUI ?= 0
# Directory Variables # Directory Variables
LIBDIR := lib LIBDIR := lib
@@ -21,7 +22,13 @@ ifeq ($(OS), Windows_NT)
PLATFORM_SRCS := $(wildcard $(SRC)/win32_*.c) PLATFORM_SRCS := $(wildcard $(SRC)/win32_*.c)
PLATFORM_OBJS := $(patsubst $(SRC)/%.c, $(OBJ)/%.o, $(PLATFORM_SRCS)) PLATFORM_OBJS := $(patsubst $(SRC)/%.c, $(OBJ)/%.o, $(PLATFORM_SRCS))
PLATFORM_FLAGS := -D WIN32 -DUNICODE -D_UNICODE PLATFORM_FLAGS := -D WIN32 -DUNICODE -D_UNICODE
PLATFORM_LIBS := -mwindows PLATFORM_LIBS :=
ifeq ($(CI2_GUI),1)
PLATFORM_LIBS += -mwindows
PLATFORM_FLAGS += -DCI2_GUI
endif
else else
UNAME_S := $(shell uname -s) UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S), Linux) ifeq ($(UNAME_S), Linux)
@@ -29,7 +36,13 @@ else
PLATFORM_SRCS := $(wildcard $(SRC)/linux_*.c) PLATFORM_SRCS := $(wildcard $(SRC)/linux_*.c)
PLATFORM_OBJS := $(patsubst $(SRC)/%.c, $(OBJ)/%.o, $(PLATFORM_SRCS)) PLATFORM_OBJS := $(patsubst $(SRC)/%.c, $(OBJ)/%.o, $(PLATFORM_SRCS))
PLATFORM_FLAGS := -D LINUX PLATFORM_FLAGS := -D LINUX
PLATFORM_LIBS := -lX11 PLATFORM_LIBS :=
ifeq ($(CI2_GUI),1)
PLATFORM_FLAGS += -DCI2_GUI
PLATFORM_LIBS += -lX11
endif
else ifeq ($(UNAME_S), Darwin) else ifeq ($(UNAME_S), Darwin)
PLATFORM := mac PLATFORM := mac
PLATFORM_SRCS := $(wildcard $(SRC)/mac_*.c) PLATFORM_SRCS := $(wildcard $(SRC)/mac_*.c)

View File

@@ -23,7 +23,6 @@ SOFTWARE.
#ifndef CI2_MACROS_H #ifndef CI2_MACROS_H
#define CI2_MACROS_H #define CI2_MACROS_H
#define CI2_GUI 1 // -mwindows flag is in makefile
#define UNUSED(x) (void)(x) #define UNUSED(x) (void)(x)
typedef int ci2_bool; typedef int ci2_bool;

View File

@@ -27,5 +27,25 @@ SOFTWARE.
#include "ci2_exception.h" #include "ci2_exception.h"
#include "ci2_mem.h" #include "ci2_mem.h"
#ifdef CI2_WINDOWS
#ifdef CI2_GUI
extern int WINAPI ci2_wgui(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow);
#else
#include <io.h>
#include <fcntl.h>
extern int WINAPI ci2_wcli(int argc, ci2_sys_char *wargv[]);
#endif // CI2_GUI
#else // NOT CI2_WINDOWS
extern int ci2_gui( int argc, ci2_sys_char *argv[]);
extern int ci2_cli( int argc, ci2_sys_char *argv[]);
#endif
#endif // ci2.h #endif // ci2.h

View File

@@ -50,8 +50,5 @@ void ci2_destroy_window(CI2_Window* window);
// Shuts down the ci2 layer // Shuts down the ci2 layer
void ci2_shutdown(void); void ci2_shutdown(void);
// Non GUI Main
ci2_bool ci2_main(int argc, ci2_sys_char *argv[]);
#endif // ci2_window.h #endif // ci2_window.h

41
src/linux_ci2.c Normal file
View File

@@ -0,0 +1,41 @@
/* - | Copyright | --------------------------------------------------------------
Copyright (c) 2026 Randy Jordan
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
* --------------------------------------------------------------------------*/
#include "../include/ci2.h"
#include <stdlib.h>
int ci2_gui(int argc, ci2_sys_char *argv[]){
printf("GUI\n");
UNUSED(argc);
UNUSED(argv);
return EXIT_SUCCESS;
}
int ci2_cli(int argc, ci2_sys_char *argv[]){
printf("CLI\n");
#ifdef CI2_GUI
printf("\n\nERROR\n\n");
#endif
UNUSED(argc);
UNUSED(argv);
return EXIT_SUCCESS;
}

View File

@@ -112,9 +112,3 @@ void ci2_shutdown(void)
// Nothing global needed // Nothing global needed
} }
ci2_bool ci2_main(int argc, ci2_sys_char *argv[])
{
UNUSED(argc);
UNUSED(argv);
return EXIT_SUCCESS;
}

92
src/win32_ci2.c Normal file
View File

@@ -0,0 +1,92 @@
/* - | Copyright | --------------------------------------------------------------
Copyright (c) 2026 Randy Jordan
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
* --------------------------------------------------------------------------*/
#include "../include/ci2.h"
int WINAPI ci2_wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine, int nCmdShow) {
// Create a console so stdout/stderr work
if (AllocConsole()) {
FILE *f;
freopen_s(&f, "CONOUT$", "w", stdout);
freopen_s(&f, "CONOUT$", "w", stderr);
wprintf(L"Allocated console\n");
}
WNDCLASSEXW wc = {0};
wc.cbSize = sizeof(wc);
wc.lpfnWndProc = WndProc;
wc.hInstance = hInstance;
wc.lpszClassName = CLASS_NAME;
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
if (!RegisterClassExW(&wc)) return 0;
HWND hwnd = CreateWindowExW(
0,
CLASS_NAME,
L"My -mwindows App",
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, CW_USEDEFAULT, 400, 200,
NULL, NULL, hInstance, NULL
);
if (!hwnd) return 0;
ShowWindow(hwnd, nCmdShow);
UpdateWindow(hwnd);
MSG msg;
while (GetMessageW(&msg, NULL, 0, 0) > 0) {
TranslateMessage(&msg);
DispatchMessageW(&msg);
}
return (int)msg.wParam;
}
int WINAPI ci2_wmain(int argc, wchar_t **argv) {
// You already have a console because this is a console subsystem binary.
wprintf(L"Console present. argc=%d\n", argc);
HINSTANCE hInst = GetModuleHandleW(NULL);
WNDCLASSW wc = {0};
wc.lpfnWndProc = WndProc;
wc.hInstance = hInst;
wc.lpszClassName = L"MyWinClass";
RegisterClassW(&wc);
HWND hwnd = CreateWindowExW(
0, wc.lpszClassName, L"GUI from wmain",
WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, 640, 480,
NULL, NULL, hInst, NULL);
ShowWindow(hwnd, SW_SHOW);
MSG msg;
while (GetMessageW(&msg, NULL, 0, 0)) {
TranslateMessage(&msg);
DispatchMessageW(&msg);
}
wprintf(L"Message loop ended, exit code=%d\n", (int)msg.wParam);
return (int)msg.wParam;
}

View File

@@ -112,13 +112,6 @@ void ci2_shutdown(void)
// Nothing to do // Nothing to do
} }
ci2_bool ci2_main(int argc, ci2_sys_char *argv[])
{
UNUSED(argc);
UNUSED(argv);
return EXIT_SUCCESS;
}
static LRESULT CALLBACK window_proc( static LRESULT CALLBACK window_proc(
HWND hwnd, HWND hwnd,
UINT uMsg, UINT uMsg,

56
tests/01_main.c Normal file
View File

@@ -0,0 +1,56 @@
/* - | Copyright | --------------------------------------------------------------
Copyright (c) 2026 Randy Jordan
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
* --------------------------------------------------------------------------*/
#define DEBUG
#include "../include/ci2.h"
#ifdef CI2_WINDOWS
#ifdef CI2_GUI
int WINAPI WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
return ci2_wgui(hInstance, hPrevInstance, lpCmdLine,nCmdShow);
}
#else
#include <io.h>
#include <fcntl.h>
int wmain(int argc, ci2_sys_char *wargv[])
{
return ci2_wcli(argc, wargv);
}
#endif // CI2_GUI
#else // NOT CI2_WINDOWS
#ifdef CI2_GUI
int main(int argc, ci2_sys_char *argv[]){
return ci2_gui(argc, argv);
}
#else
int main(int argc, ci2_sys_char *argv[]){
return ci2_cli(argc,argv);
}
#endif
#endif