You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.9 KiB
80 lines
1.9 KiB
#################################################
|
|
#
|
|
# (C) 2019 Michele Calgaro
|
|
# michele (DOT) calgaro (AT) yahoo (DOT) it
|
|
#
|
|
# Improvements and feedbacks are welcome
|
|
#
|
|
# This file is released under GPL >= 3
|
|
#
|
|
#################################################
|
|
|
|
include_directories(
|
|
${TQT_INCLUDE_DIRS}
|
|
${TDE_INCLUDE_DIR}
|
|
${CMAKE_SOURCE_DIR}
|
|
${CMAKE_BINARY_DIR}
|
|
${CMAKE_SOURCE_DIR}/lib
|
|
${CMAKE_BINARY_DIR}/lib
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
link_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_BINARY_DIR}/lib
|
|
)
|
|
|
|
# Tests don't need to go into toplevel/bin, they are fine in the current dir.
|
|
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} )
|
|
|
|
tde_add_check_executable( testconstants
|
|
SOURCES testconstants.cpp
|
|
LINK kpilot-shared ${TQT_LIBRARIES}
|
|
TEST
|
|
)
|
|
|
|
tde_add_check_executable( testcategories
|
|
SOURCES testcategories.cpp
|
|
LINK kpilot-shared ${TQT_LIBRARIES}
|
|
TEST
|
|
)
|
|
|
|
tde_add_check_executable( testaddresses
|
|
SOURCES testaddress.cpp
|
|
LINK kpilot-shared ${TQT_LIBRARIES}
|
|
TEST
|
|
)
|
|
|
|
tde_add_check_executable( testdatebook
|
|
SOURCES testdatebook.cpp
|
|
LINK kpilot-shared ${TQT_LIBRARIES}
|
|
TEST
|
|
)
|
|
|
|
tde_add_check_executable( importaddresses
|
|
SOURCES importaddresses.cpp
|
|
LINK kpilot-shared tdeabc-shared tdeabc_file-shared ${TQT_LIBRARIES}
|
|
)
|
|
add_test(importaddresses ${EXECUTABLE_OUTPUT_PATH}/importaddresses --data-dir "${CMAKE_CURRENT_BINARY_DIR}" --address-file "${CMAKE_CURRENT_SOURCE_DIR}/data/AddressDB.pdb")
|
|
|
|
if (HAVE_CALENDARLOCAL_H)
|
|
tde_add_check_executable( importdatebook
|
|
SOURCES importdatebook.cpp
|
|
LINK kpilot-shared kcal-shared ${TQT_LIBRARIES}
|
|
TEST
|
|
)
|
|
|
|
tde_add_check_executable( exportdatebook
|
|
SOURCES exportdatebook.cpp
|
|
LINK kpilot-shared kcal-shared ${TQT_LIBRARIES}
|
|
TEST
|
|
)
|
|
|
|
tde_add_check_executable( mergecalendars
|
|
SOURCES mergecalendars.cpp
|
|
LINK kpilot-shared kcal-shared ${TQT_LIBRARIES}
|
|
TEST
|
|
)
|
|
endif (HAVE_CALENDARLOCAL_H)
|