first commit

This commit is contained in:
Your Name
2022-10-20 20:29:11 +08:00
commit 4d531f8044
3238 changed files with 1387862 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
set(SOURCES
fgtraffic.cxx
)
set(HEADERS
fgtraffic.hxx
)
add_executable(fgtraffic
${SOURCES} ${HEADERS}
)
install(TARGETS fgtraffic RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})

View File

@@ -0,0 +1,8 @@
#include "fgtraffic.hxx"
#include <iostream>
int main(int argc, char *argv[]) {
std::cout << "Hello World" << std::endl;
return 0;
}

View File