Add all config cli commands

This commit is contained in:
Thraix
2019-10-10 21:36:30 +02:00
parent 709defc4f6
commit 17245655d4
9 changed files with 408 additions and 84 deletions
+2 -2
View File
@@ -234,10 +234,10 @@ ConfigFile ConfigFile::Gen()
else
{
InputBoolean("Should it be compiled as a shared library? (y/n)", conf.shared);
InputBoolean("Should it compile a single h file? (y/n):", conf.generateHFile);
InputBoolean("Should it compile a project h-file? (y/n):", conf.generateHFile);
if(conf.generateHFile)
{
InputString("Enter the h file name (and path): ", conf.hFile, false, false);
InputString("Enter the project h-file name (relative to source directory): ", conf.hFile, false, false);
}
}
InputMultiple("Enter include directory:", conf.includedirs, true);