diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-01-14 16:17:20 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-01-14 16:17:20 +0100 |
commit | 0230af4b5ab78b1fbaededcc42562f6b574c820f (patch) | |
tree | f679c8da33e91713ce53a9a515aa29a3bcc67334 /src | |
parent | fbfd7c227a080537f498b51ec3de22053a32c599 (diff) |
Add lang.c and lang.cpp to tests
Diffstat (limited to 'src')
-rw-r--r-- | src/Conf.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Conf.cpp b/src/Conf.cpp index c2302e4..964b9db 100644 --- a/src/Conf.cpp +++ b/src/Conf.cpp @@ -1433,6 +1433,14 @@ namespace sibs { parseDependencies(name, value); } + else if(currentObject.equals("lang.c")) + { + parseCLang(name, value); + } + else if(currentObject.equals("lang.cpp")) + { + parseCppLang(name, value); + } else { string errMsg = "project.conf: Expected category to be 'dependencies', was: '"; |