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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
// $Id: tests.mpc 80826 2008-03-04 14:51:23Z wotte $
project (asnmp_tests_Oid_Test) : aceexe {
exename = Oid_Test
after += asnmp_lib
libs += asnmp
includes += $(ACE_ROOT)/ASNMP
source_files {
Oid_Test.cpp
}
}
project (asnmp_tests_Counter_Test) : aceexe {
exename = Counter_Test
after += asnmp_lib
libs += asnmp
includes += $(ACE_ROOT)/ASNMP
source_files {
Counter_Test.cpp
}
}
project (asnmp_tests_Counter64_Test) : aceexe {
exename = Counter64_Test
after += asnmp_lib
libs += asnmp
includes += $(ACE_ROOT)/ASNMP
source_files {
Counter64_Test.cpp
}
}
project (asnmp_tests_Integer_Test) : aceexe {
exename = Integer_Test
after += asnmp_lib
libs += asnmp
includes += $(ACE_ROOT)/ASNMP
source_files {
Integer_Test.cpp
}
}
project (asnmp_tests_Octet_Test) : aceexe {
exename = Octet_Test
after += asnmp_lib
libs += asnmp
includes += $(ACE_ROOT)/ASNMP
source_files {
Octet_Test.cpp
}
}
project (asnmp_tests_Gauge_Test) : aceexe {
exename = Gauge_Test
after += asnmp_lib
libs += asnmp
includes += $(ACE_ROOT)/ASNMP
source_files {
Gauge_Test.cpp
}
}
project (asnmp_tests_Address_Test) : aceexe {
exename = Address_Test
after += asnmp_lib
libs += asnmp
includes += $(ACE_ROOT)/ASNMP
source_files {
Address_Test.cpp
}
}
project (asnmp_tests_Target_Test) : aceexe {
exename = Target_Test
after += asnmp_lib
libs += asnmp
includes += $(ACE_ROOT)/ASNMP
source_files {
Target_Test.cpp
}
}
project (asnmp_tests_Varbind_Test) : aceexe {
exename = Varbind_Test
after += asnmp_lib
libs += asnmp
includes += $(ACE_ROOT)/ASNMP
source_files {
Varbind_Test.cpp
}
}
|