init
This commit is contained in:
7
testApp/CMakeLists.txt
Normal file
7
testApp/CMakeLists.txt
Normal 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
10
testApp/src/main.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user