Browse Source

rename uclient-example to uclient-fetch

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Felix Fietkau 10 years ago
parent
commit
131a36634c
3 changed files with 3 additions and 3 deletions
  1. 1 1
      .gitignore
  2. 2 2
      CMakeLists.txt
  3. 0 0
      uclient-fetch.c

+ 1 - 1
.gitignore

@@ -6,4 +6,4 @@ CMakeFiles
 *.so
 *.dylib
 install_manifest.txt
-uclient-example
+uclient-fetch

+ 2 - 2
CMakeLists.txt

@@ -15,8 +15,8 @@ ENDIF()
 ADD_LIBRARY(uclient SHARED uclient.c uclient-http.c uclient-utils.c)
 TARGET_LINK_LIBRARIES(uclient ubox dl)
 
-ADD_EXECUTABLE(uclient-example uclient-example.c)
-TARGET_LINK_LIBRARIES(uclient-example uclient)
+ADD_EXECUTABLE(uclient-fetch uclient-fetch.c)
+TARGET_LINK_LIBRARIES(uclient-fetch uclient)
 
 INSTALL(FILES uclient.h uclient-utils.h
 	DESTINATION include/libubox

+ 0 - 0
uclient-example.c → uclient-fetch.c