Replace socket_handler::fill_buffer() recursion with loop (#8389)
[libt2n] / examples-codegen / example1-client / CMakeLists.txt
CommitLineData
471f240f
KK
1# Project
2project(libt2n-example1-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)
471f240f 17
7ba38527
KK
18# pkg_check_modules(T2NEXAMPLE REQUIRED t2nexample=0.1)
19# include_directories(${T2NEXAMPLE_INCLUDE_DIRS})
20# link_directories(${T2NEXAMPLE_LIBRARY_DIRS})
471f240f 21
7ba38527 22# include(CPack)
471f240f
KK
23
24# Sources
25set(libt2n_example1_client_SOURCES
26 client.cpp
27)
28
29# Executables
30add_executable(libt2n-example1-client ${libt2n_example1_client_SOURCES})
31
32# Dependencies
7ba38527
KK
33# target_link_libraries(libt2n-example1-client ${T2NEXAMPLE_LIBRARIES})
34target_link_libraries(libt2n-example1-client t2nexample)
471f240f
KK
35
36# Installation
37# install(TARGETS libt2n-example1-client DESTINATION bin)