1
0
mirror of https://github.com/fumiama/simple-http-server.git synced 2026-06-05 08:40:24 +08:00
Files
simple-http-server/CMakeLists.txt
源文雨 7c49fd7df3 init
2021-06-07 14:37:29 +08:00

18 lines
481 B
CMake

cmake_minimum_required(VERSION 2.6)
project(simple-http-server C)
SET(CMAKE_BUILD_TYPE "Release")
add_definitions(-DLISTEN_ON_IPV6)
IF(CMAKE_SIZEOF_VOID_P EQUAL 8)
add_definitions("-DCPUBIT64")
ELSE()
add_definitions("-DCPUBIT32")
ENDIF()
include_directories("/usr/local/include")
link_directories("/usr/local/lib")
add_executable(simple-http-server server.c)
target_link_libraries(simple-http-server pthread)
INSTALL(TARGETS simple-http-server RUNTIME DESTINATION bin)