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
|
|
|
|
2016-08-31 01:05:24 +00:00
|
|
|
// TODO(allen): can I get away from this one?
|
|
|
|
#include <assert.h>
|
2017-01-07 02:59:55 +00:00
|
|
|
#include "common/4coder_defines.h"
|
2016-08-31 01:05:24 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
#define FSTRING_IMPLEMENTATION
|
|
|
|
#define FSTRING_C
|
|
|
|
#include "4coder_string.h"
|
|
|
|
|
2016-09-01 19:40:25 +00:00
|
|
|
#include "4coder_custom.h"
|
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
#include "4ed_math.h"
|
2016-02-07 15:19:18 +00:00
|
|
|
|
|
|
|
#include "4ed_system.h"
|
|
|
|
#include "4ed_rendering.h"
|
2016-08-30 19:30:41 +00:00
|
|
|
|
2016-02-07 15:19:18 +00:00
|
|
|
#include "4ed.h"
|
2016-10-22 15:30:25 +00:00
|
|
|
#include "4ed_mem.h"
|
2016-02-07 15:19:18 +00:00
|
|
|
|
2016-09-07 03:39:19 +00:00
|
|
|
#define FCPP_FORBID_MALLOC
|
2016-06-06 16:01:57 +00:00
|
|
|
#include "4cpp_lexer.h"
|
2016-02-07 15:19:18 +00:00
|
|
|
|
2016-08-29 01:03:26 +00:00
|
|
|
#include "4coder_table.cpp"
|
|
|
|
|
|
|
|
#include "4ed_doubly_linked_list.cpp"
|
2016-03-05 08:10:43 +00:00
|
|
|
|
2016-02-07 15:19:18 +00:00
|
|
|
#include "4ed_font_set.cpp"
|
|
|
|
#include "4ed_rendering_helper.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-01-07 02:59:55 +00:00
|
|
|
#include "file/4coder_buffer.cpp"
|
|
|
|
#include "file/4coder_undo.cpp"
|
2017-01-03 20:05:35 +00:00
|
|
|
#include "file/4coder_file.cpp"
|
|
|
|
#include "file/4coder_working_set.cpp"
|
|
|
|
#include "file/4coder_hot_directory.cpp"
|
2016-09-18 15:30:19 +00:00
|
|
|
|
2016-02-21 17:44:23 +00:00
|
|
|
#include "4ed_gui.cpp"
|
2016-03-03 00:50:04 +00:00
|
|
|
#include "4ed_layout.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"
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|