# HG changeset patch
# User Andre Heinecke <aheinecke@intevation.de>
# Date 1395412378 0
# Node ID 7e2d08555112842595c93e7833e988038a4807d7
# Parent  8fa2737912423eb4e7fe7f5937fb4c7b28c36088
Make cinst cmakelist relative so it can be used standalone

diff -r 8fa273791242 -r 7e2d08555112 cinst/CMakeLists.txt
--- a/cinst/CMakeLists.txt	Fri Mar 21 12:15:29 2014 +0000
+++ b/cinst/CMakeLists.txt	Fri Mar 21 14:32:58 2014 +0000
@@ -1,19 +1,26 @@
+cmake_minimum_required(VERSION 2.8)
+
 set(CMAKE_AUTOMOC OFF)
 
+set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/../cmake/")
+
+find_package(PolarSSL)
+
 include_directories(${POLARSSL_INCLUDE_DIR})
-include_directories(${CMAKE_SOURCE_DIR}/common)
+include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../common)
 
 set(CINST_SOURCES
-    ${CMAKE_SOURCE_DIR}/cinst/main.c
-    ${CMAKE_SOURCE_DIR}/common/listutil.c
-    ${CMAKE_SOURCE_DIR}/common/strhelp.c
+    ${CMAKE_CURRENT_SOURCE_DIR}/main.c
+    ${CMAKE_CURRENT_SOURCE_DIR}/../common/listutil.c
+    ${CMAKE_CURRENT_SOURCE_DIR}/../common/strhelp.c
 )
 
 set(MOZILLA_SOURCES
-    ${CMAKE_SOURCE_DIR}/cinst/mozilla.c
+   ${CMAKE_CURRENT_SOURCE_DIR}/mozilla.c
 )
 
 add_executable(cinst ${CINST_SOURCES})
+add_executable(mozilla ${MOZILLA_SOURCES})
 if (WIN32)
    set(WIN_EXTRA_LIBS -lcrypt32)
 endif(WIN32)
@@ -23,3 +30,5 @@
    ${POLARSSL_LIBRARIES}
    ${WIN_EXTRA_LIBS})
 
+target_link_libraries(mozilla
+   ${PROFILING_LIBS})