aboutsummaryrefslogtreecommitdiffstats
path: root/examples/CMakeLists.txt
blob: d6995c28a70f016879f4a095116e11712645863a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
include_directories(
  ${tinyb_LIB_INCLUDE_DIRS}
  ${GLIB2_INCLUDE_DIRS}
  ${GIO_INCLUDE_DIRS}
  ${GIO-UNIX_INCLUDE_DIRS}
)


add_executable (hellotinyb hellotinyb.cpp)
set_target_properties(hellotinyb
    PROPERTIES
    CXX_STANDARD 11)

include_directories(${PROJECT_SOURCE_DIR}/api)

target_link_libraries (hellotinyb tinyb)