FaceGen 3 SDKs Reference
Loading...
Searching...
No Matches
FgCmdMain.cpp
1//
2// Copyright (c) 2023 Singular Inversions Inc. (facegen.com)
3// Use, modification and distribution is subject to the MIT License,
4// see accompanying file LICENSE.txt or facegen.com/base_library_license.txt
5//
6
7#include "stdafx.h"
8
9#include "FgCommand.hpp"
10#include "FgBuild.hpp"
11
12using namespace std;
13
14namespace Fg {
15
16void cmdFgml(CLArgs const & args)
17{
18 if (args.size() == 1)
19 fgout << fgnl << "FaceGen Main Library CLI " << getSdkVersion(".") << " (" << getCurrentBuildDescription() << ")";
20 Cmds cmds {};
21 doMenu(args,cmds);
22}
23
24}
25
26// */