Small corrections. Compiles and builds.
[libt2n] / examples-codegen / example2-client / CMakeLists.txt
CommitLineData
42d5cde7
KK
1# Project
2project(libt2n-example2-client)
3set(VERSION 0.1)
4set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}")
5
6# CMake
7set(CMAKE_COLOR_MAKEFILE ON)
8cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
9
10# Source package generation
11set(CPACK_SOURCE_GENERATOR TGZ)
12set(CPACK_SOURCE_IGNORE_FILES "~$;\\\\.git;build;build-rpm")
13set(CPACK_SOURCE_PACKAGE_FILE_NAME "${PROJECT_NAME}-${VERSION}")
14
15# Find external packages
7ba38527 16# include(FindPkgConfig)
42d5cde7 17
7ba38527
KK
18# pkg_check_modules(DEFAULT REQUIRED default=0.1)
19# include_directories(${DEFAULT_INCLUDE_DIRS})
20# link_directories(${DEFAULT_LIBRARY_DIRS})
42d5cde7
KK
21
22include(CPack)
23
24# Sources
25set(libt2n_example2_client_SOURCES
26 client.cpp
27 )
28
29# Executables
30add_executable(libt2n-example2-client ${libt2n_example2_client_SOURCES})
31
32# Dependencies
7ba38527
KK
33# target_link_libraries(libt2n-example2-client ${DEFAULT_LIBRARIES})
34target_link_libraries(libt2n-example2-client default)
42d5cde7
KK
35
36# Installation
37# install(TARGETS libt2n-example2-client DESTINATION bin)