4coder/4ed_app_target.cpp

76 lines
1.4 KiB
C++
Raw Normal View History

/*
* Mr. 4th Dimention - Allen Webster
*
* 13.11.2015
*
* Application layer build target
*
*/
// TOP
2016-03-07 05:13:20 +00:00
// TODO(allen): get away from string.h
#include <string.h>
2016-08-31 01:05:24 +00:00
#include "4ed_defines.h"
2016-08-29 01:03:26 +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"
#include "4ed_system.h"
#define PREFERRED_ALIGNMENT 8
2017-07-03 17:19:13 +00:00
#define USE_DEBUG_MEMORY
#define FSTRING_IMPLEMENTATION
#define FSTRING_C
#include "4coder_lib/4coder_string.h"
#include "4coder_lib/4coder_mem.h"
#include "4coder_lib/4coder_table.h"
#include "4coder_lib/4coder_utf8.h"
#if defined(USE_DEBUG_MEMORY)
# include "4ed_debug_mem.h"
#endif
2017-11-10 18:27:39 +00:00
#include "4ed_render_format.h"
#include "4ed_render_target.h"
#include "4ed.h"
#include "4ed_buffer_model.h"
#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
#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"
#include "4ed_command.cpp"
2016-09-18 15:30:19 +00:00
#include "4ed_buffer.cpp"
#include "4ed_undo.cpp"
#include "4ed_file.cpp"
#include "4ed_working_set.cpp"
#include "4ed_hot_directory.cpp"
#include "4ed_parse_contexts.cpp"
2016-09-18 15:30:19 +00:00
#include "4ed_cli.cpp"
#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"
#include "4ed_view.cpp"
2016-05-06 15:34:08 +00:00
#include "4ed_app_models.h"
#include "4ed_file_view.cpp"
#include "4ed.cpp"
#include "4ed_font_static_functions.cpp"
// BOTTOM