2016-02-07 15:19:18 +00:00
|
|
|
/*
|
|
|
|
* Mr. 4th Dimention - Allen Webster
|
|
|
|
*
|
|
|
|
* 13.11.2015
|
|
|
|
*
|
|
|
|
* Application layer build target
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
2016-03-07 05:13:20 +00:00
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
// TODO(allen): get away from string.h
|
|
|
|
#include <string.h>
|
2016-08-31 01:05:24 +00:00
|
|
|
|
2017-07-07 23:54:50 +00:00
|
|
|
#include "4ed_defines.h"
|
2016-08-29 01:03:26 +00:00
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
#include "4coder_API/custom.h"
|
2016-09-01 19:40:25 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
#include "4ed_math.h"
|
2016-02-07 15:19:18 +00:00
|
|
|
#include "4ed_system.h"
|
2017-01-14 03:01:35 +00:00
|
|
|
|
2017-06-16 23:10:50 +00:00
|
|
|
#define PREFERRED_ALIGNMENT 8
|
2017-07-03 17:19:13 +00:00
|
|
|
#define USE_DEBUG_MEMORY
|
2017-01-23 06:19:43 +00:00
|
|
|
|
|
|
|
#define FSTRING_IMPLEMENTATION
|
|
|
|
#define FSTRING_C
|
|
|
|
#include "4coder_lib/4coder_string.h"
|
|
|
|
#include "4coder_lib/4coder_mem.h"
|
|
|
|
#include "4coder_lib/4coder_table.h"
|
2017-02-20 21:05:42 +00:00
|
|
|
#include "4coder_lib/4coder_utf8.h"
|
2017-01-14 03:01:35 +00:00
|
|
|
#if defined(USE_DEBUG_MEMORY)
|
|
|
|
# include "4ed_debug_mem.h"
|
|
|
|
#endif
|
2016-02-07 15:19:18 +00:00
|
|
|
|
2017-11-10 18:27:39 +00:00
|
|
|
#include "4ed_render_format.h"
|
|
|
|
#include "4ed_render_target.h"
|
2017-01-23 06:19:43 +00:00
|
|
|
#include "4ed.h"
|
2017-03-18 19:24:16 +00:00
|
|
|
#include "4ed_buffer_model.h"
|
2016-02-07 15:19:18 +00:00
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
#define FCPP_FORBID_MALLOC
|
|
|
|
#include "4cpp/4cpp_lexer.h"
|
2016-08-29 01:03:26 +00:00
|
|
|
|
|
|
|
#include "4ed_doubly_linked_list.cpp"
|
2016-03-05 08:10:43 +00:00
|
|
|
|
2017-03-18 19:24:16 +00:00
|
|
|
#include "4ed_translation.cpp"
|
2017-11-10 18:27:39 +00:00
|
|
|
|
|
|
|
#include "4ed_render_target.cpp"
|
|
|
|
#include "4ed_render_fill.cpp"
|
2016-03-03 19:27:09 +00:00
|
|
|
|
2016-03-04 23:10:00 +00:00
|
|
|
#include "4ed_style.h"
|
|
|
|
#include "4ed_style.cpp"
|
2016-02-07 15:19:18 +00:00
|
|
|
#include "4ed_command.cpp"
|
2016-09-18 15:30:19 +00:00
|
|
|
|
2017-03-18 18:43:30 +00:00
|
|
|
#include "4ed_buffer.cpp"
|
|
|
|
#include "4ed_undo.cpp"
|
|
|
|
#include "4ed_file.cpp"
|
|
|
|
#include "4ed_working_set.cpp"
|
|
|
|
#include "4ed_hot_directory.cpp"
|
2017-05-19 23:55:50 +00:00
|
|
|
#include "4ed_parse_contexts.cpp"
|
2016-09-18 15:30:19 +00:00
|
|
|
|
2017-07-17 22:46:56 +00:00
|
|
|
#include "4ed_cli.cpp"
|
|
|
|
|
2017-01-23 06:19:43 +00:00
|
|
|
#include "4ed_gui.h"
|
2016-02-21 17:44:23 +00:00
|
|
|
#include "4ed_gui.cpp"
|
2016-03-03 00:50:04 +00:00
|
|
|
#include "4ed_layout.cpp"
|
2017-07-17 23:35:13 +00:00
|
|
|
#include "4ed_view.cpp"
|
|
|
|
|
2016-05-06 15:34:08 +00:00
|
|
|
#include "4ed_app_models.h"
|
2016-03-01 21:25:56 +00:00
|
|
|
#include "4ed_file_view.cpp"
|
2016-02-07 15:19:18 +00:00
|
|
|
#include "4ed.cpp"
|
|
|
|
|
2017-03-23 23:40:16 +00:00
|
|
|
#include "4ed_font_static_functions.cpp"
|
2017-03-12 01:20:24 +00:00
|
|
|
|
2016-02-07 15:19:18 +00:00
|
|
|
// BOTTOM
|
|
|
|
|