~aleteoryx/muditaos

ref: a3aa441b0fbb94956cdafaebd92b15b5c93da59f muditaos/module-db/tests/CMakeLists.txt -rw-r--r-- 1.1 KiB
a3aa441b — Bartosz Cichocki [EGD-6682] Fix BT name change bug 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
if (NOT IS_SYMLINK "${CMAKE_BINARY_DIR}/sys/user")
    file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/sys/user")
endif()

add_catch2_executable(
    NAME
        db
    SRCS
        AlarmsRecord_tests.cpp
        AlarmsTable_tests.cpp
        CalllogRecord_tests.cpp
        CalllogTable_tests.cpp
        ContactGroups_tests.cpp
        ContactsAddressTable_tests.cpp
        ContactsNameTable_tests.cpp
        ContactsNumberTable_tests.cpp
        ContactsRecord_tests.cpp
        ContactsRingtonesTable_tests.cpp
        ContactsTable_tests.cpp
        DbInitializer.cpp
        EventsRecord_tests.cpp
        #EventsTable_tests.cpp
        NotesRecord_tests.cpp
        NotesTable_tests.cpp
        #NotificationsRecord_tests.cpp
        #NotificationsTable_tests.cpp
        QueryInterface.cpp
        SMSRecord_tests.cpp
        SMSTable_tests.cpp
        SMSTemplateRecord_tests.cpp
        SMSTemplateTable_tests.cpp
        ThreadRecord_tests.cpp
        ThreadsTable_tests.cpp
        tests-main.cpp
        common.cpp
        
    LIBS
        module-db
        module-vfs
        iosyscalls
    DEPS
        disk_image
)
add_subdirectory(test-initializer)