first commit
This commit is contained in:
16
utils/traffic/CMakeLists.txt
Normal file
16
utils/traffic/CMakeLists.txt
Normal 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})
|
||||
8
utils/traffic/fgtraffic.cxx
Normal file
8
utils/traffic/fgtraffic.cxx
Normal file
@@ -0,0 +1,8 @@
|
||||
#include "fgtraffic.hxx"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
std::cout << "Hello World" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
0
utils/traffic/fgtraffic.hxx
Normal file
0
utils/traffic/fgtraffic.hxx
Normal file
Reference in New Issue
Block a user