Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.27 KB | None | 0 0
  1. cmake_minimum_required(VERSION 3.14)
  2. project(inf21_2 C)
  3.  
  4. set(CMAKE_C_STANDARD 99)
  5. find_package(CURL REQUIRED)
  6.  
  7. add_executable(inf21_2 main.c)
  8.  
  9. target_include_directories(inf21_2 PUBLIC ${CURL_INCLUDE_DIRECTORIES})
  10.  
  11. target_link_libraries(inf21_2 ${CURL_LIBRARIES})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement