From cb69299b9d59db0888e942025ae4915c6f32d066 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Wed, 29 Apr 2015 18:58:07 +0200 Subject: added libquickmail and email registration --- 3rdParty/captcha/CMakeLists.txt | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 3rdParty/captcha/CMakeLists.txt (limited to '3rdParty/captcha/CMakeLists.txt') diff --git a/3rdParty/captcha/CMakeLists.txt b/3rdParty/captcha/CMakeLists.txt new file mode 100644 index 0000000..4e59b19 --- /dev/null +++ b/3rdParty/captcha/CMakeLists.txt @@ -0,0 +1,26 @@ +cmake_minimum_required(VERSION 2.6 FATAL_ERROR) + +set(libcaptcha_source_files + captcha.c + f.h +) + +set(unfont_source_files + unfont.c +) + +if(NOT WIN32) + add_definitions("-fPIC") +endif() + +add_custom_command( + PRE_BUILD + OUTPUT f.h + COMMAND ./unfont > f.h + DEPENDS unfont +) + +add_executable(unfont ${unfont_source_files}) + +add_library(captcha STATIC ${libcaptcha_source_files}) + -- cgit v1.2.3-54-g00ecf