include_directories(
  ${CMAKE_BINARY_DIR}
  ${CMAKE_CURRENT_BINARY_DIR}
  ${CMAKE_CURRENT_SOURCE_DIR}
  ${TDE_INCLUDE_DIR}
  ${TQT_INCLUDE_DIRS}
)

link_directories(
  ${TQT_LIBRARY_DIRS}
  ${TDE_LIB_DIR}
)


##### (executables)

tde_add_executable( anonstruct

  SOURCES
        anonstruct.cpp
)

tde_add_executable( locals

  SOURCES
        locals.cpp
)

tde_add_executable( maths

  SOURCES
        maths.cpp
)

tde_add_executable( nestedclass

  SOURCES
        nestedclass.cpp
)

tde_add_executable( qt

  SOURCES
        qt.cpp
  LINK
     tdecore-shared
)

tde_add_executable( repeats

  SOURCES
        repeats.cpp
  LINK
     tdecore-shared
)

tde_add_executable( std

  SOURCES
        std.cpp
)

tde_add_executable( templates

  SOURCES
        templates.cpp
)

tde_add_executable( testfile

  SOURCES
        testfile.cpp
  LINK
     tdecore-shared
)

tde_add_executable( widechar

  SOURCES
        widechar.cpp
)
