12 lines
341 B
CMake
12 lines
341 B
CMake
|
project (gtk-test)
|
||
|
cmake_minimum_required (VERSION 2.4)
|
||
|
|
||
|
find_package (PkgConfig REQUIRED)
|
||
|
pkg_check_modules (GTK2 REQUIRED gtk+-2.0)
|
||
|
|
||
|
include_directories (${GTK2_INCLUDE_DIRS})
|
||
|
link_directories (${GTK2_LIBRARY_DIRS})
|
||
|
add_executable (gtk-test main.c)
|
||
|
add_definitions (${GTK2_CFLAGS_OTHER})
|
||
|
target_link_libraries (gtk-test ${GTK2_LIBRARIES})
|