Title: [161528] trunk
Revision
161528
Author
[email protected]
Date
2014-01-08 17:19:39 -0800 (Wed, 08 Jan 2014)

Log Message

[GTK] [CMake] Specify the executable and library output locations in the build
https://bugs.webkit.org/show_bug.cgi?id=126671

Reviewed by Gustavo Noronha Silva.

* Source/cmake/OptionsGTK.cmake: Explicitly specify the output locations.

Modified Paths

Diff

Modified: trunk/ChangeLog (161527 => 161528)


--- trunk/ChangeLog	2014-01-09 01:07:05 UTC (rev 161527)
+++ trunk/ChangeLog	2014-01-09 01:19:39 UTC (rev 161528)
@@ -1,3 +1,12 @@
+2014-01-08  Martin Robinson  <[email protected]>
+
+        [GTK] [CMake] Specify the executable and library output locations in the build
+        https://bugs.webkit.org/show_bug.cgi?id=126671
+
+        Reviewed by Gustavo Noronha Silva.
+
+        * Source/cmake/OptionsGTK.cmake: Explicitly specify the output locations.
+
 2014-01-08  Dániel Bátyai  <[email protected]>
 
         [EFL] Make FTL buildable

Modified: trunk/Source/cmake/OptionsGTK.cmake (161527 => 161528)


--- trunk/Source/cmake/OptionsGTK.cmake	2014-01-09 01:07:05 UTC (rev 161527)
+++ trunk/Source/cmake/OptionsGTK.cmake	2014-01-09 01:19:39 UTC (rev 161528)
@@ -1,3 +1,7 @@
+set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
+set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
+set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
+
 include(GNUInstallDirs)
 
 set(PROJECT_VERSION_MAJOR 2)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to