1
0
Fork 0
forked from fun/fun

Some refactoring. (0.37.21)

This commit is contained in:
Johannes Findeisen 2025-12-27 12:20:22 +01:00
commit 033bf53889
11 changed files with 10 additions and 10 deletions

View file

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.10)
project(fun VERSION 0.37.20 LANGUAGES C)
project(fun VERSION 0.37.21 LANGUAGES C)
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_STANDARD_REQUIRED ON)

View file

View file

@ -40,15 +40,15 @@
#include "vm.h"
// Optional by extensions commonly used code. #ifdef's are in each single file.
#include "ext/curl.c"
#include "ext/ini.c"
#include "ext/json.c"
#include "ext/libsql.c"
#include "ext/pcsc.c"
#include "ext/pcre2.c"
#include "ext/sqlite.c"
#include "ext/tcltk.c"
#include "ext/xml2.c"
#include "external/curl.c"
#include "external/ini.c"
#include "external/json.c"
#include "external/libsql.c"
#include "external/pcsc.c"
#include "external/pcre2.c"
#include "external/sqlite.c"
#include "external/tcltk.c"
#include "external/xml2.c"
/* forward declarations for include mapping used in error reporting */
extern char *preprocess_includes(const char *src);