2012-03-02 11:23:20 +01:00
|
|
|
# required dep for server:
|
2012-08-30 19:14:39 +02:00
|
|
|
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")
|
2012-08-30 19:20:03 +02:00
|
|
|
endif()
|
|
|
|
endif()
|
2012-03-02 11:23:20 +01:00
|
|
|
|
|
|
|
# JPIP library:
|
2012-08-30 19:14:39 +02:00
|
|
|
add_subdirectory(libopenjpip)
|
2012-03-02 11:23:20 +01:00
|
|
|
|
|
|
|
# JPIP binaries:
|
2012-08-30 19:14:39 +02:00
|
|
|
add_subdirectory(util)
|
2012-03-02 11:23:20 +01:00
|
|
|
|