1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 07:41:21 +00:00
QB64 is a modern extended BASIC programming language that retains QBasic/QuickBASIC 4.5 compatibility and compiles native binaries for Windows, Linux, and macOS. https://qb64.com
Go to file
Galleon 2af8c7399c Implements -g switch to compile with no graphical dependencies
(Can now generate stand-alone executables <1MB)
-g can be specified within code with:
$CONSOLE:ONLY
Note: Programs using this still need to call _DEST _CONSOLE or output will not be visible

Also added dependency rules to remove unrequired static system libs from being linked:
[X] lws2_32 as DEPENDENCY_SOCKETS
	_OPENHOST
	_OPENCLIENT
[X] -lwinspool as DEPENDENCY_PRINTER
	LPRINT
	_PRINTIMAGE
[X] -lwinmm & mmsystem.h
	Required by:
		FreeGlut (GUI)
		Audio Out
[X] -lksguid (From the DirectX SDK, Required for Audio)
	Required by:
		Audio Out
[X] -ldxguid (From the DirectX SDK, Required for Audio)
	Required by:
		Audio Out
[X] -lole32
	Required by:
		Audio Out (dsound.c)
[X] -lgdi32
	Required by:
		void sub__icon(int32 handle_icon, int32 handle_window_icon, int32 passed){
		int32 func__screenimage(int32 x1,int32 y1,int32 x2,int32 y2,int32 passed)
		Printer
Some code has been moved from inside libqb.cpp into subfolder internal\c\libqb

Added dummy config.h file so libsamplerate could compile in Linux (Need to establish when it was removed)
2015-01-06 03:55:55 -08:00
internal Implements -g switch to compile with no graphical dependencies 2015-01-06 03:55:55 -08:00
LICENSE Change to the STRCMP routine to correct < vs > bug. 2014-09-28 11:27:07 -04:00
programs Change to the STRCMP routine to correct < vs > bug. 2014-09-28 11:27:07 -04:00
source Implements -g switch to compile with no graphical dependencies 2015-01-06 03:55:55 -08:00
cyberbit.ttf Change to the STRCMP routine to correct < vs > bug. 2014-09-28 11:27:07 -04:00
qb64_start_osx.command Change to the STRCMP routine to correct < vs > bug. 2014-09-28 11:27:07 -04:00
setup_lnx.sh Change to the STRCMP routine to correct < vs > bug. 2014-09-28 11:27:07 -04:00
setup_osx.command Change to the STRCMP routine to correct < vs > bug. 2014-09-28 11:27:07 -04:00
setup_win.bat Change to the STRCMP routine to correct < vs > bug. 2014-09-28 11:27:07 -04:00