Changeset 161528 in webkit


Ignore:
Timestamp:
Jan 8, 2014 5:19:39 PM (10 years ago)
Author:
Martin Robinson
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.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r161498 r161528  
     12014-01-08  Martin Robinson  <mrobinson@igalia.com>
     2
     3        [GTK] [CMake] Specify the executable and library output locations in the build
     4        https://bugs.webkit.org/show_bug.cgi?id=126671
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        * Source/cmake/OptionsGTK.cmake: Explicitly specify the output locations.
     9
    1102014-01-08  Dániel Bátyai  <dbatyai.u-szeged@partner.samsung.com>
    211
  • trunk/Source/cmake/OptionsGTK.cmake

    r161351 r161528  
     1set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
     2set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
     3set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
     4
    15include(GNUInstallDirs)
    26
Note: See TracChangeset for help on using the changeset viewer.