mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
19 lines
416 B
C++
19 lines
416 B
C++
// SPDX-License-Identifier: MIT
|
|
|
|
#ifndef RGBDS_ASM_MAIN_HPP
|
|
#define RGBDS_ASM_MAIN_HPP
|
|
|
|
#include <stdio.h>
|
|
#include <string>
|
|
|
|
extern bool verbose;
|
|
extern bool warnings; // True to enable warnings, false to disable them.
|
|
|
|
extern FILE *dependFile;
|
|
extern std::string targetFileName;
|
|
extern bool generatedMissingIncludes;
|
|
extern bool failedOnMissingInclude;
|
|
extern bool generatePhonyDeps;
|
|
|
|
#endif // RGBDS_ASM_MAIN_HPP
|