You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
603 B
C++
23 lines
603 B
C++
|
4 years ago
|
/******************************************************************************
|
||
|
|
* File - main.cpp
|
||
|
|
* Author - Joey Pollack
|
||
|
|
* Date - 2021/12/03 (y/m/d)
|
||
|
|
* Mod Date - 2021/12/03 (y/m/d)
|
||
|
|
* Description - Generates a new C++ project with CMake
|
||
|
|
******************************************************************************/
|
||
|
|
|
||
|
|
#include <utils/CmdArgParser.h>
|
||
|
|
#include <utils/StringManip.h>
|
||
|
|
|
||
|
|
#include <iostream>
|
||
|
|
|
||
|
|
typedef jpUtils::CmdArgParser::ArgDesc ArgDesc;
|
||
|
|
|
||
|
|
int main(int argc, char** argv)
|
||
|
|
{
|
||
|
|
jpUtils::CmdArgParser argParser(argc, argv, "Generates a new C++ project with CMake");
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|