small core changes
This commit is contained in:
14
build_file.c
14
build_file.c
@@ -134,19 +134,19 @@ void generate_math_code(ma_arena_t *arena) {
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
core_init();
|
||||
os_core_init();
|
||||
int ok = 0;
|
||||
|
||||
SRC_SearchPaths.include_path = (char*[]){OS_GetAbsolutePath(&Perm, s8("../src")).str};
|
||||
SRC_SearchPaths.include_path_count = 1;
|
||||
cache_init(&Perm, s8("cache_build_file"));
|
||||
|
||||
generate_math_code(tcx->temp);
|
||||
generate_ui_code(tcx->temp);
|
||||
generate_app_code(tcx->temp);
|
||||
generate_prototype_code(tcx->temp);
|
||||
generate_render_code(tcx->temp);
|
||||
generate_testing_code(tcx->temp);
|
||||
generate_math_code(&tcx->temp);
|
||||
generate_ui_code(&tcx->temp);
|
||||
generate_app_code(&tcx->temp);
|
||||
generate_prototype_code(&tcx->temp);
|
||||
generate_render_code(&tcx->temp);
|
||||
generate_testing_code(&tcx->temp);
|
||||
|
||||
b32 run_win32_app_base_target = true;
|
||||
b32 run_testing_target = true;
|
||||
|
||||
Reference in New Issue
Block a user