summaryrefslogtreecommitdiffstats
path: root/Source/cmake.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmake.h')
-rw-r--r--Source/cmake.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmake.h b/Source/cmake.h
index ac7a80d..5e272f9 100644
--- a/Source/cmake.h
+++ b/Source/cmake.h
@@ -60,8 +60,10 @@ class cmake
* to the command line version of cmake. For building a GUI,
* you would pass in the following arguments:
* /path/to/cmake -H/path/to/source -B/path/to/build
+ * If you only want to parse the CMakeLists.txt files,
+ * but not actually generate the makefiles, use buildMakefiles = false.
*/
- int Generate(const std::vector<std::string>&);
+ int Generate(const std::vector<std::string>&, bool buildMakefiles = true);
/**
* Generate the SourceFilesList from the SourceLists. This should only be