~ubuntu-branches/ubuntu/vivid/freerdp/vivid

« back to all changes in this revision

Viewing changes to cunit/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2014-11-11 12:20:50 UTC
  • mfrom: (1.2.5)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: package-import@ubuntu.com-20141111122050-7z628f4ab38qxad5
Tags: upstream-1.1.0~git20140921.1.440916e+dfsg1
ImportĀ upstreamĀ versionĀ 1.1.0~git20140921.1.440916e+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# FreeRDP: A Remote Desktop Protocol Client
 
1
# FreeRDP: A Remote Desktop Protocol Implementation
2
2
# cunit cmake build script
3
3
#
4
4
# Copyright 2011 O.S. Systems Software Ltda.
20
20
include_directories(${CUNIT_INCLUDE_DIRS})
21
21
include_directories(${CMAKE_SOURCE_DIR}) # for some internal tests
22
22
 
23
 
include_directories(../libfreerdp-core)
24
 
include_directories(../libfreerdp-gdi)
25
 
include_directories(../libfreerdp-cache)
26
 
include_directories(../libfreerdp-codec)
 
23
include_directories(../libfreerdp/core)
 
24
include_directories(../libfreerdp/gdi)
 
25
include_directories(../libfreerdp/cache)
 
26
include_directories(../libfreerdp/codec)
27
27
 
28
28
add_executable(test_freerdp
29
 
        test_per.c
30
 
        test_per.h
31
 
        test_ber.c
32
 
        test_ber.h
33
29
        test_gcc.c
34
30
        test_gcc.h
35
31
        test_mcs.c
38
34
        test_color.h
39
35
        test_bitmap.c
40
36
        test_bitmap.h
41
 
        test_libgdi.c
42
 
        test_libgdi.h
43
 
        test_list.c
44
 
        test_list.h
 
37
        test_gdi.c
 
38
        test_gdi.h
45
39
        test_orders.c
46
40
        test_orders.h
47
41
        test_pcap.c
48
42
        test_pcap.h
 
43
        test_ntlm.c
 
44
        test_ntlm.h
49
45
        test_license.c
50
46
        test_license.h
51
 
        test_stream.c
52
 
        test_stream.h
53
 
        test_utils.c
54
 
        test_utils.h
55
 
        test_channels.c
56
 
        test_channels.h
57
47
        test_cliprdr.c
58
48
        test_cliprdr.h
59
49
        test_drdynvc.c
60
50
        test_drdynvc.h
61
 
        test_librfx.c
62
 
        test_librfx.h
 
51
        test_rfx.c
 
52
        test_rfx.h
 
53
        test_nsc.c
 
54
        test_nsc.h
 
55
        test_sspi.c
 
56
        test_sspi.h
63
57
        test_freerdp.c
64
58
        test_freerdp.h
65
59
        test_rail.c
66
60
        test_rail.h
67
 
        test_mppc)
 
61
        test_mppc.c
 
62
        test_mppc.h
 
63
        test_mppc_enc.c
 
64
        test_mppc_enc.h)
68
65
 
69
66
target_link_libraries(test_freerdp ${CUNIT_LIBRARIES})
70
67
 
71
68
target_link_libraries(test_freerdp freerdp-core)
72
69
target_link_libraries(test_freerdp freerdp-gdi)
73
70
target_link_libraries(test_freerdp freerdp-utils)
74
 
target_link_libraries(test_freerdp freerdp-channels)
75
71
target_link_libraries(test_freerdp freerdp-codec)
76
 
 
77
 
add_test(CUnitTests ${EXECUTABLE_OUTPUT_PATH}/test_freerdp)
 
72
target_link_libraries(test_freerdp freerdp-crypto)
 
73
 
 
74
target_link_libraries(test_freerdp winpr-sspi)
 
75
 
 
76
add_test(CUnitTests ${CMAKE_SOURCE_DIR}/cunit/test_freerdp)
 
77