9 lines
359 B
CMake
9 lines
359 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(rhosts VERSION 0.0.0 LANGUAGES C)
|
|
message(" C: '${CMAKE_C_COMPILER}'")
|
|
include_directories(${PROJECT_SOURCE_DIR})
|
|
add_executable(rhosts src/rhosts.c src/download.c)
|
|
target_link_libraries(rhosts curl)
|
|
target_include_directories(rhosts PUBLIC "${PROJECT_BINARY_DIR}")
|
|
configure_file(src/rhostsConfig.h.in config.h)
|