blob: 673843ec99747a52bdefc56fc1d66c47ab443f2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# required dep for server:
if(BUILD_JPIP_SERVER)
find_package(CURL REQUIRED)
find_package(FCGI REQUIRED)
find_package(Threads REQUIRED)
if(NOT CMAKE_USE_PTHREADS_INIT)
message(FATAL_ERROR "Only pthread are supported")
endif()
endif()
add_subdirectory(lib)
#add_subdirectory(bin)
|