Skip to content

Commit

Permalink
Tools - Add HEMTT SQF support (#658)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpas authored Dec 7, 2023
1 parent 705b018 commit a1307e6
Show file tree
Hide file tree
Showing 19 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .hemtt/project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ include = [
[version]
git_hash = 0

# Unused in HEMTT v1.11 or higher, kept for backwards compatibility
[asc]
enabled = true
exclude = [
"/initsettings.sqf",
"/initkeybinds.sqf",
"/xeh_prep.sqf",
"/initsettings.inc.sqf",
"/initkeybinds.inc.sqf",
]

[hemtt.config]
Expand Down
2 changes: 1 addition & 1 deletion addons/apollo/XEH_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PREP_RECOMPILE_START;
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;

#include "initSettings.sqf"
#include "initSettings.inc.sqf"

if (isServer) then {
GVAR(vehiclesLoaded) = false;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion addons/armory/XEH_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ PREP_RECOMPILE_START;
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;

#include "initSettings.sqf"
#include "initSettings.inc.sqf"

ADDON = true;
File renamed without changes.
2 changes: 1 addition & 1 deletion addons/bodybag/XEH_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ PREP_RECOMPILE_START;
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;

#include "initSettings.sqf"
#include "initSettings.inc.sqf"

ADDON = true;
File renamed without changes.
2 changes: 1 addition & 1 deletion addons/difficulties/XEH_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ PREP_RECOMPILE_START;
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;

#include "initSettings.sqf"
#include "initSettings.inc.sqf"

ADDON = true;
File renamed without changes.
2 changes: 1 addition & 1 deletion addons/insurgents/XEH_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PREP_RECOMPILE_START;
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;

#include "initSettings.sqf"
#include "initSettings.inc.sqf"

GVAR(randomGear) = createHashMap;

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion addons/medical/XEH_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

ADDON = false;

#include "initSettings.sqf"
#include "initSettings.inc.sqf"

ADDON = true;
File renamed without changes.
2 changes: 1 addition & 1 deletion addons/noactions/XEH_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

ADDON = false;

#include "initSettings.sqf"
#include "initSettings.inc.sqf"

ADDON = true;
File renamed without changes.
2 changes: 1 addition & 1 deletion addons/performance/XEH_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

ADDON = false;

#include "initSettings.sqf"
#include "initSettings.inc.sqf"

ADDON = true;
File renamed without changes.
2 changes: 1 addition & 1 deletion addons/radios/XEH_preInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PREP_RECOMPILE_START;
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;

#include "initSettings.sqf"
#include "initSettings.inc.sqf"

if (hasInterface) then {
GVAR(tracks) = ('getNumber (_x >> QGVAR(isTrack)) > 0' configClasses (configFile >> "CfgSounds")) apply {configName _x};
Expand Down
File renamed without changes.

0 comments on commit a1307e6

Please sign in to comment.