From 79d664e533a126e0a7669ec08b916cebac4733aa Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Fri, 6 Dec 2024 05:21:49 -0600 Subject: [PATCH] first commit --- CMakeLists.txt | 5 +++-- examples/{download.cpp => tfetch.cpp} | 0 2 files changed, 3 insertions(+), 2 deletions(-) rename examples/{download.cpp => tfetch.cpp} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index eedcb0e..643e6fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -144,6 +144,7 @@ if(TESSESFRAMEWORK_ENABLE_EXAMPLES) add_executable(mountabletest examples/mountabletest.cpp) target_link_libraries(mountabletest PUBLIC tessesframework) - add_executable(download examples/download.cpp) - target_link_libraries(download PUBLIC tessesframework) + add_executable(tfetch examples/tfetch.cpp) + target_link_libraries(tfetch PUBLIC tessesframework) + install(TARGETS tfetch DESTINATION bin) endif() \ No newline at end of file diff --git a/examples/download.cpp b/examples/tfetch.cpp similarity index 100% rename from examples/download.cpp rename to examples/tfetch.cpp