From 0006d77bc3b86a32ad0e54690aacd6535a5705f6 Mon Sep 17 00:00:00 2001 From: worldwidesorrow Date: Tue, 21 Jan 2020 12:00:56 -0600 Subject: [PATCH] Update compile.sqf --- SQF/dayz_code/util/compile.sqf | 26 ++++---------------------- 1 file changed, 4 insertions(+), 22 deletions(-) diff --git a/SQF/dayz_code/util/compile.sqf b/SQF/dayz_code/util/compile.sqf index 9e08c4be1..f9fa38e9d 100644 --- a/SQF/dayz_code/util/compile.sqf +++ b/SQF/dayz_code/util/compile.sqf @@ -1,22 +1,4 @@ -#define STRINGIFY(x) #x -#define PATH(sub_path) STRINGIFY(\z\addons\dayz_code\util\sub_path) -#define CCPP call compile preprocessFileLineNumbers - -//Debug -CCPP PATH(debug.sqf); - -//Very generic utilities -CCPP PATH(util.sqf); -CCPP PATH(mutex.sqf); -CCPP PATH(math.sqf); -CCPP PATH(array.sqf); - -//Collections -CCPP PATH(stack.sqf); -CCPP PATH(queue.sqf); -CCPP PATH(dictionary.sqf); - -//Specialized -CCPP PATH(vector.sqf); -CCPP PATH(task.sqf); -CCPP PATH(request.sqf); \ No newline at end of file +call compile preprocessFileLineNumbers "\z\addons\dayz_code\util\math.sqf"; +call compile preprocessFileLineNumbers "\z\addons\dayz_code\util\array.sqf"; +call compile preprocessFileLineNumbers "\z\addons\dayz_code\util\vector.sqf"; +call compile preprocessFileLineNumbers "\z\addons\dayz_code\util\player.sqf";