mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 04:37:47 +08:00
a22c4cb90d
* argparse library added to third parth. We're using argparse (https://github.com/cofyc/argparse) repo to parse cli args. * parsed arguments applied to the cli. Co-authored-by: Derick Alangi <alangiderick@gmail.com>
22 lines
829 B
C
22 lines
829 B
C
/*
|
|
* Copyright (c) 2020-2021 Thakee Nathees
|
|
* Distributed Under The MIT License
|
|
*/
|
|
|
|
// This file will include all thirdparty source files from the thirdparty sub
|
|
// directories here into a single file. That'll make it easy to compile with
|
|
// the command `gcc cli/*.c ...` instead of having to add every single sub
|
|
// directory to the list of source directory.
|
|
|
|
// Library : cwalk
|
|
// Source : https://github.com/likle/cwalk/
|
|
// Doc : https://likle.github.io/cwalk/
|
|
// About : Path library for C/C++. Cross-Platform for Windows, MacOS and
|
|
// Linux. Supports UNIX and Windows path styles on those platforms.
|
|
#include "thirdparty/cwalk/cwalk.c"
|
|
|
|
// Library : argparse
|
|
// Source : https://github.com/cofyc/argparse/
|
|
// About : Command-line arguments parsing library.
|
|
#include "thirdparty/argparse/argparse.c"
|