~aleteoryx/muditaos

ref: 71465d8990c394626e06f4b5b1c094ca808a3c20 muditaos/module-db/tests/CMakeLists.txt -rw-r--r-- 1.1 KiB
71465d89 — Artur Śleszyński [EGD-3119] Hide InputEvent's member fields 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
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
        
    LIBS
        module-db
        module-vfs
        iosyscalls
    DEPS
        disk_image
)
add_subdirectory(test-initializer)