-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adapt TextField for raylib, WIP on ToggleMenu
- Loading branch information
Showing
5 changed files
with
289 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Define the package name and version | ||
AC_INIT([sprites4curses], [0.4.8], [[email protected]]) | ||
AC_INIT([sprites4curses], [0.4.9-dev], [[email protected]]) | ||
|
||
# Verify automake version and enable foreign option | ||
AM_INIT_AUTOMAKE([foreign -Wall]) | ||
|
@@ -20,7 +20,7 @@ AM_CONDITIONAL([S4C_ANIMATE_BUILD], [test "$enable_animate" = "yes"]) | |
AC_ARG_ENABLE([gui], | ||
[AS_HELP_STRING([--enable-gui], [Enable gui extension header])], | ||
[enable_gui=$enableval], | ||
[enable_gui=no]) | ||
[enable_gui=yes]) | ||
AM_CONDITIONAL([S4C_GUI_BUILD], [test "$enable_gui" = "yes"]) | ||
|
||
AC_ARG_ENABLE([animate_raylib], | ||
|
@@ -107,7 +107,7 @@ AM_CONDITIONAL([LINUX_BUILD], [test "$build_linux" = "yes"]) | |
# Set a default version number if not specified externally | ||
AC_ARG_VAR([VERSION], [Version number]) | ||
if test -z "$VERSION"; then | ||
VERSION="0.4.8" | ||
VERSION="0.4.9-dev" | ||
fi | ||
|
||
# Output variables to the config.h header | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.