~ubuntu-branches/ubuntu/trusty/cmake3/trusty-updates

« back to all changes in this revision

Viewing changes to Tests/FindGTK2/pango/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2017-02-23 17:55:24 UTC
  • Revision ID: package-import@ubuntu.com-20170223175524-5nh7s4pu97fsa0t7
Tags: upstream-3.5.1
ImportĀ upstreamĀ versionĀ 3.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
cmake_minimum_required(VERSION 2.8)
 
2
 
 
3
project(pango C)
 
4
 
 
5
find_package(GTK2 COMPONENTS gtk REQUIRED)
 
6
 
 
7
set(CMAKE_INCLUDE_CURRENT_DIR ON)
 
8
 
 
9
add_executable(pango WIN32 main.c)
 
10
target_link_libraries(pango GTK2::pango)