This commit is contained in:
2025-08-06 13:29:28 +08:00
commit 957a372209
230 changed files with 43801 additions and 0 deletions

7
testApp/CMakeLists.txt Normal file
View File

@ -0,0 +1,7 @@
set(TARGET demo)
file(GLOB_RECURSE SRC_SOURCE src/**.cpp)
add_executable(${TARGET} ${SRC_SOURCE})
target_link_libraries(${TARGET} expkg-static)

10
testApp/src/main.cpp Normal file
View File

@ -0,0 +1,10 @@
#include "EXPKG/EXPKG.h"
int main(const int argc, char** argv)
{
const CommandArgs args{ argc, argv };
PKG::EXPKG app{ args };
return 0;
}