20,741
edits
m (→Approach) |
|||
| Line 32: | Line 32: | ||
* <code>-DDISABLE_PUI</code> | * <code>-DDISABLE_PUI</code> | ||
* <code>-DDISABLE_2DPANELS</code> | * <code>-DDISABLE_2DPANELS</code> | ||
Successfully disabling a feature means primarily: | |||
* adding a corresponding new build option to the top-level CMakeLists.txt (e.g. DISABLE_PUI) | |||
* opening fg_init.cxx and navigating to the lines where the feature/subsystem is initialized | |||
* wrapping the corresponding code in between <code>#ifdef...#endif</code> blocks | |||
* locating any remaining references to the subsystem in question and repeating the last step there | |||
== Affected Features / Sources == | == Affected Features / Sources == | ||