Bundle external libraries with the include files
This commit is contained in:
parent
f6dd762e8d
commit
963d911d9d
3451
External/json.h
vendored
Normal file
3451
External/json.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4450
External/metadesk/md.c
vendored
Normal file
4450
External/metadesk/md.c
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1248
External/metadesk/md.h
vendored
Normal file
1248
External/metadesk/md.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1905
External/metadesk/md_stb_sprintf.h
vendored
Normal file
1905
External/metadesk/md_stb_sprintf.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@ -13,7 +13,7 @@ pushd Build
|
|||||||
REM O2 Optimisation Level 2
|
REM O2 Optimisation Level 2
|
||||||
REM Oi Use CPU Intrinsics
|
REM Oi Use CPU Intrinsics
|
||||||
REM Z7 Combine multi-debug files to one debug file
|
REM Z7 Combine multi-debug files to one debug file
|
||||||
set common_flags=-D DQN_UNIT_TESTS_WITH_MAIN -D DQN_UNIT_TESTS_WITH_KECCAK -D DQN_IMPLEMENTATION -D DQN_USE_STD_PRINTF /Tp %script_dir%\dqn.h
|
set common_flags=-D DQN_UNIT_TESTS_WITH_MAIN -D DQN_UNIT_TESTS_WITH_KECCAK -D DQN_IMPLEMENTATION -D DQN_WITH_JSON -D DQN_USE_STD_PRINTF /Tp %script_dir%\dqn.h
|
||||||
|
|
||||||
set msvc_driver_flags=%common_flags% -MT -EHa -GR- -Od -Oi -Z7 -wd4201 -W4 -nologo
|
set msvc_driver_flags=%common_flags% -MT -EHa -GR- -Od -Oi -Z7 -wd4201 -W4 -nologo
|
||||||
|
|
||||||
|
80
dqn.h
80
dqn.h
@ -188,32 +188,25 @@
|
|||||||
// allow arbitrary querying of data definitions expressed in Excel-like tables
|
// allow arbitrary querying of data definitions expressed in Excel-like tables
|
||||||
// using text files encoded in Dion-System's Metadesk grammar.
|
// using text files encoded in Dion-System's Metadesk grammar.
|
||||||
//
|
//
|
||||||
// This option requires the standalone 'dqn_cpp_file.h' to be included prior
|
// This option automatically includes 'dqn_cpp_file.h' to assist with code
|
||||||
// to 'dqn.h' as well as Metadesk's 'md.h' and similarly the implementation of
|
// generation and Metadesk's 'md.h' and its implementation library.
|
||||||
// these files to be defined before the implementation of 'dqn.h' is defined.
|
|
||||||
//
|
//
|
||||||
// #define DQN_WITH_CGEN
|
// #define DQN_WITH_CGEN
|
||||||
//
|
//
|
||||||
// For example in your header file
|
// Optionally define 'DQN_NO_METADESK' to disable the inclusion of Metadesk
|
||||||
//
|
// in the library. This might be useful if you are including the librarin in
|
||||||
// #include "metadesk/md.h"
|
// your project yourself. This library must still be defined and visible
|
||||||
// #include "dqn/Standalone/dqn_cpp_file.h"
|
// before this header.
|
||||||
// #define DQN_STB_SPRINTF_HEADER_ONLY // Metadesk includes 'stb_sprintf.h' already
|
|
||||||
// #define DQN_WITH_CGEN
|
|
||||||
// #include "dqn.h"
|
|
||||||
//
|
|
||||||
// Then in your implementation file
|
|
||||||
//
|
|
||||||
// #include "metadesk/md.c"
|
|
||||||
// #define DQN_CPP_FILE_IMPLEMENTATION
|
|
||||||
// #include "dqn/Standalone/dqn_cpp_file.h"
|
|
||||||
// #define DQN_IMPLEMENTATION
|
|
||||||
// #include "dqn.h"
|
|
||||||
//
|
//
|
||||||
// - Enable 'Dqn_JSON' a json parser. This option requires Sheredom's 'json.h'
|
// - Enable 'Dqn_JSON' a json parser. This option requires Sheredom's 'json.h'
|
||||||
// to be included prior to this file.
|
// to be included prior to this file.
|
||||||
//
|
//
|
||||||
// #define DQN_WITH_JSON
|
// #define DQN_WITH_JSON
|
||||||
|
//
|
||||||
|
// Optionally define 'DQN_NO_SHEREDOM_JSON' to prevent Sheredom's 'json.h'
|
||||||
|
// library from being included. This might be useful if you are including the
|
||||||
|
// library in your project yourself. The library must still be defined and
|
||||||
|
// visible before this header.
|
||||||
|
|
||||||
#if defined(DQN_ONLY_VARRAY) || \
|
#if defined(DQN_ONLY_VARRAY) || \
|
||||||
defined(DQN_ONLY_SARRAY) || \
|
defined(DQN_ONLY_SARRAY) || \
|
||||||
@ -294,6 +287,27 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(DQN_WITH_CGEN)
|
||||||
|
#if !defined(DQN_NO_METADESK)
|
||||||
|
#if !defined(_CRT_SECURE_NO_WARNINGS)
|
||||||
|
#define _CRT_SECURE_NO_WARNINGS
|
||||||
|
#define DQN_UNDO_CRT_SECURE_NO_WARNINGS
|
||||||
|
#endif
|
||||||
|
#include "External/metadesk/md.h"
|
||||||
|
#if defined(DQN_UNDO_CRT_SECURE_NO_WARNINGS)
|
||||||
|
#undef _CRT_SECURE_NO_WARNINGS
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Metadesk includes 'stb_sprintf.h' already
|
||||||
|
#if !defined(DQN_STB_SPRINTF_HEADER_ONLY)
|
||||||
|
#define DQN_STB_SPRINTF_HEADER_ONLY
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Metadesk includes Windows.h
|
||||||
|
#define DQN_NO_WIN32_MIN_HEADER
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "dqn_base.h"
|
#include "dqn_base.h"
|
||||||
#include "dqn_external.h"
|
#include "dqn_external.h"
|
||||||
#if defined(DQN_PLATFORM_WIN32)
|
#if defined(DQN_PLATFORM_WIN32)
|
||||||
@ -317,10 +331,14 @@
|
|||||||
#include "dqn_type_info.h"
|
#include "dqn_type_info.h"
|
||||||
|
|
||||||
#if defined(DQN_WITH_CGEN)
|
#if defined(DQN_WITH_CGEN)
|
||||||
|
#include "Standalone/dqn_cpp_file.h"
|
||||||
#include "dqn_cgen.h"
|
#include "dqn_cgen.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(DQN_WITH_JSON)
|
#if defined(DQN_WITH_JSON)
|
||||||
|
#if !defined(DQN_NO_SHEREDOM_JSON)
|
||||||
|
#include "External/json.h"
|
||||||
|
#endif
|
||||||
#include "dqn_json.h"
|
#include "dqn_json.h"
|
||||||
#endif
|
#endif
|
||||||
#endif // DQN_H
|
#endif // DQN_H
|
||||||
@ -341,6 +359,23 @@
|
|||||||
//
|
//
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#if defined(DQN_WITH_CGEN)
|
||||||
|
#if !defined(DQN_NO_METADESK)
|
||||||
|
DQN_MSVC_WARNING_PUSH
|
||||||
|
DQN_MSVC_WARNING_DISABLE(4505) // warning C4505: '<function>': unreferenced function with internal linkage has been removed
|
||||||
|
#include "External/metadesk/md.c"
|
||||||
|
DQN_MSVC_WARNING_POP
|
||||||
|
#endif
|
||||||
|
#define DQN_CPP_FILE_IMPLEMENTATION
|
||||||
|
#include "Standalone/dqn_cpp_file.h"
|
||||||
|
#include "dqn_cgen.cpp"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(DQN_WITH_JSON)
|
||||||
|
#define DQN_JSON_IMPLEMENTATION
|
||||||
|
#include "dqn_json.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "dqn_base.cpp"
|
#include "dqn_base.cpp"
|
||||||
#include "dqn_thread_context.cpp"
|
#include "dqn_thread_context.cpp"
|
||||||
#include "dqn_external.cpp"
|
#include "dqn_external.cpp"
|
||||||
@ -362,15 +397,6 @@
|
|||||||
#include "dqn_hash.cpp"
|
#include "dqn_hash.cpp"
|
||||||
#include "dqn_helpers.cpp"
|
#include "dqn_helpers.cpp"
|
||||||
|
|
||||||
#if defined(DQN_WITH_CGEN)
|
|
||||||
#include "dqn_cgen.cpp"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(DQN_WITH_JSON)
|
|
||||||
#define DQN_JSON_IMPLEMENTATION
|
|
||||||
#include "dqn_json.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "dqn_unit_tests.cpp"
|
#include "dqn_unit_tests.cpp"
|
||||||
#include "dqn_docs.cpp"
|
#include "dqn_docs.cpp"
|
||||||
#endif // DQN_IMPLEMENTATION
|
#endif // DQN_IMPLEMENTATION
|
||||||
|
Loading…
Reference in New Issue
Block a user