[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r3890: Scribble down the locations of the compiled vidalia.exe and (in vidalia/trunk/src: crashreporter vidalia)



Author: edmanm
Date: 2009-06-25 00:14:36 -0400 (Thu, 25 Jun 2009)
New Revision: 3890

Modified:
   vidalia/trunk/src/crashreporter/CMakeLists.txt
   vidalia/trunk/src/vidalia/CMakeLists.txt
Log:

Scribble down the locations of the compiled vidalia.exe and
crashreporter.exe (if built with Breakpad support), so we can
use those in the .wxs packaging script. 


Modified: vidalia/trunk/src/crashreporter/CMakeLists.txt
===================================================================
--- vidalia/trunk/src/crashreporter/CMakeLists.txt	2009-06-25 04:04:58 UTC (rev 3889)
+++ vidalia/trunk/src/crashreporter/CMakeLists.txt	2009-06-25 04:14:36 UTC (rev 3890)
@@ -65,3 +65,9 @@
   )
 endif(WIN32)
 
+## Remember the location of the crash reporter binary so we can use it in 
+## the Windows packaging scripts
+get_target_property(CRASHREPORTER_EXECUTABLE crashreporter LOCATION_RelWithDebInfo)
+set(VIDALIA_CRASHREPORTER_EXECUTABLE ${CRASHREPORTER_EXECUTABLE}
+    CACHE STRING "Location of Vidalia's crash reporting application." FORCE)
+

Modified: vidalia/trunk/src/vidalia/CMakeLists.txt
===================================================================
--- vidalia/trunk/src/vidalia/CMakeLists.txt	2009-06-25 04:04:58 UTC (rev 3889)
+++ vidalia/trunk/src/vidalia/CMakeLists.txt	2009-06-25 04:14:36 UTC (rev 3890)
@@ -500,3 +500,9 @@
           DESTINATION share/icons/hicolor/128x128/apps)
 endif(NOT WIN32 AND NOT APPLE)
 
+## Remember the location of the Vidalia binary so we can use it in
+## the Windows packaging scripts
+get_target_property(VIDALIA_EXECUTABLE ${vidalia_BIN} LOCATION_RelWithDebInfo)
+set(VIDALIA_EXECUTABLE ${VIDALIA_EXECUTABLE}
+    CACHE STRING "Location of the Vidalia executable." FORCE)
+