Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 1 | # |
| 2 | # Licensed to the Apache Software Foundation (ASF) under one |
| 3 | # or more contributor license agreements. See the NOTICE file |
| 4 | # distributed with this work for additional information |
| 5 | # regarding copyright ownership. The ASF licenses this file |
| 6 | # to you under the Apache License, Version 2.0 (the |
| 7 | # "License"); you may not use this file except in compliance |
| 8 | # with the License. You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, |
| 13 | # software distributed under the License is distributed on an |
| 14 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | # KIND, either express or implied. See the License for the |
| 16 | # specific language governing permissions and limitations |
| 17 | # under the License. |
| 18 | # |
| 19 | |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 20 | # Find required packages |
| 21 | set(Boost_USE_STATIC_LIBS ON) # Force the use of static boost test framework |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 22 | find_package(Boost 1.53.0 REQUIRED COMPONENTS chrono system thread unit_test_framework) |
Nobuaki Sukegawa | c444fb5 | 2015-01-02 23:16:55 +0900 | [diff] [blame] | 23 | include_directories(SYSTEM "${Boost_INCLUDE_DIRS}") |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 24 | |
| 25 | #Make sure gen-cpp files can be included |
| 26 | include_directories("${CMAKE_CURRENT_BINARY_DIR}") |
| 27 | |
| 28 | # Create the thrift C++ test library |
| 29 | set(testgencpp_SOURCES |
| 30 | gen-cpp/DebugProtoTest_types.cpp |
| 31 | gen-cpp/DebugProtoTest_types.h |
| 32 | gen-cpp/EnumTest_types.cpp |
| 33 | gen-cpp/EnumTest_types.h |
| 34 | gen-cpp/OptionalRequiredTest_types.cpp |
| 35 | gen-cpp/OptionalRequiredTest_types.h |
| 36 | gen-cpp/Recursive_types.cpp |
| 37 | gen-cpp/Recursive_types.h |
| 38 | gen-cpp/ThriftTest_types.cpp |
| 39 | gen-cpp/ThriftTest_types.h |
| 40 | gen-cpp/TypedefTest_types.cpp |
| 41 | gen-cpp/TypedefTest_types.h |
| 42 | ThriftTest_extras.cpp |
| 43 | DebugProtoTest_extras.cpp |
| 44 | ) |
| 45 | |
| 46 | add_library(testgencpp STATIC ${testgencpp_SOURCES}) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 47 | |
Nobuaki Sukegawa | 6304a53 | 2014-12-18 01:30:58 +0900 | [diff] [blame] | 48 | set(testgencpp_cob_SOURCES |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 49 | gen-cpp/ChildService.cpp |
| 50 | gen-cpp/ChildService.h |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 51 | gen-cpp/EmptyService.cpp |
| 52 | gen-cpp/EmptyService.h |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 53 | gen-cpp/ParentService.cpp |
| 54 | gen-cpp/ParentService.h |
| 55 | gen-cpp/proc_types.cpp |
| 56 | gen-cpp/proc_types.h |
| 57 | ) |
Nobuaki Sukegawa | 6304a53 | 2014-12-18 01:30:58 +0900 | [diff] [blame] | 58 | add_library(testgencpp_cob STATIC ${testgencpp_cob_SOURCES}) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 59 | |
| 60 | |
| 61 | add_executable(Benchmark Benchmark.cpp) |
| 62 | target_link_libraries(Benchmark testgencpp) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 63 | LINK_AGAINST_THRIFT_LIBRARY(Benchmark thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 64 | add_test(NAME Benchmark COMMAND Benchmark) |
| 65 | |
| 66 | set(UnitTest_SOURCES |
| 67 | UnitTestMain.cpp |
| 68 | TMemoryBufferTest.cpp |
| 69 | TBufferBaseTest.cpp |
| 70 | Base64Test.cpp |
| 71 | ToStringTest.cpp |
| 72 | TypedefTest.cpp |
Roger Meier | 3815e0b | 2015-04-04 16:26:30 +0200 | [diff] [blame] | 73 | TServerSocketTest.cpp |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 74 | TServerTransportTest.cpp |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 75 | ) |
| 76 | |
Roger Meier | a6b6633 | 2015-05-15 15:21:50 +0200 | [diff] [blame] | 77 | if(NOT WITH_BOOSTTHREADS AND NOT WITH_STDTHREADS AND NOT MSVC) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 78 | list(APPEND UnitTest_SOURCES RWMutexStarveTest.cpp) |
| 79 | endif() |
| 80 | |
| 81 | add_executable(UnitTests ${UnitTest_SOURCES}) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 82 | target_link_libraries(UnitTests testgencpp ${Boost_LIBRARIES}) |
| 83 | LINK_AGAINST_THRIFT_LIBRARY(UnitTests thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 84 | add_test(NAME UnitTests COMMAND UnitTests) |
| 85 | |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 86 | add_executable(TSocketInterruptTest TSocketInterruptTest.cpp) |
| 87 | target_link_libraries(TSocketInterruptTest |
| 88 | testgencpp |
| 89 | ${Boost_LIBRARIES} |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 90 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 91 | LINK_AGAINST_THRIFT_LIBRARY(TSocketInterruptTest thrift) |
Thomas Bartelmess | 9e78ed8 | 2015-05-01 13:57:44 -0400 | [diff] [blame] | 92 | if (NOT MSVC AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin") |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 93 | target_link_libraries(TSocketInterruptTest -lrt) |
| 94 | endif () |
| 95 | add_test(NAME TSocketInterruptTest COMMAND TSocketInterruptTest) |
| 96 | |
| 97 | add_executable(TServerIntegrationTest TServerIntegrationTest.cpp) |
| 98 | target_link_libraries(TServerIntegrationTest |
| 99 | testgencpp_cob |
| 100 | ${Boost_LIBRARIES} |
| 101 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 102 | LINK_AGAINST_THRIFT_LIBRARY(TServerIntegrationTest thrift) |
Thomas Bartelmess | 9e78ed8 | 2015-05-01 13:57:44 -0400 | [diff] [blame] | 103 | if (NOT MSVC AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin") |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 104 | target_link_libraries(TServerIntegrationTest -lrt) |
| 105 | endif () |
| 106 | add_test(NAME TServerIntegrationTest COMMAND TServerIntegrationTest) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 107 | |
| 108 | if(WITH_ZLIB) |
| 109 | add_executable(TransportTest TransportTest.cpp) |
| 110 | target_link_libraries(TransportTest |
| 111 | testgencpp |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 112 | ${Boost_LIBRARIES} |
| 113 | ${ZLIB_LIBRARIES} |
| 114 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 115 | LINK_AGAINST_THRIFT_LIBRARY(TransportTest thrift) |
| 116 | LINK_AGAINST_THRIFT_LIBRARY(TransportTest thriftz) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 117 | add_test(NAME TransportTest COMMAND TransportTest) |
| 118 | |
| 119 | add_executable(ZlibTest ZlibTest.cpp) |
| 120 | target_link_libraries(ZlibTest |
| 121 | testgencpp |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 122 | ${Boost_LIBRARIES} |
| 123 | ${ZLIB_LIBRARIES} |
| 124 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 125 | LINK_AGAINST_THRIFT_LIBRARY(ZlibTest thrift) |
| 126 | LINK_AGAINST_THRIFT_LIBRARY(ZlibTest thriftz) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 127 | add_test(NAME ZlibTest COMMAND ZlibTest) |
| 128 | endif(WITH_ZLIB) |
| 129 | |
| 130 | |
| 131 | add_executable(EnumTest EnumTest.cpp) |
| 132 | target_link_libraries(EnumTest |
| 133 | testgencpp |
| 134 | ${Boost_LIBRARIES} |
| 135 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 136 | LINK_AGAINST_THRIFT_LIBRARY(EnumTest thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 137 | add_test(NAME EnumTest COMMAND EnumTest) |
| 138 | |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 139 | if(HAVE_GETOPT_H) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 140 | add_executable(TFileTransportTest TFileTransportTest.cpp) |
| 141 | target_link_libraries(TFileTransportTest |
| 142 | testgencpp |
| 143 | ${Boost_LIBRARIES} |
| 144 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 145 | LINK_AGAINST_THRIFT_LIBRARY(TFileTransportTest thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 146 | add_test(NAME TFileTransportTest COMMAND TFileTransportTest) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 147 | endif() |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 148 | |
| 149 | add_executable(TFDTransportTest TFDTransportTest.cpp) |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame^] | 150 | target_link_libraries(TFDTransportTest |
| 151 | ${Boost_LIBRARIES} |
| 152 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 153 | LINK_AGAINST_THRIFT_LIBRARY(TFDTransportTest thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 154 | add_test(NAME TFDTransportTest COMMAND TFDTransportTest) |
| 155 | |
| 156 | add_executable(TPipedTransportTest TPipedTransportTest.cpp) |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame^] | 157 | target_link_libraries(TPipedTransportTest |
| 158 | ${Boost_LIBRARIES} |
| 159 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 160 | LINK_AGAINST_THRIFT_LIBRARY(TPipedTransportTest thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 161 | add_test(NAME TPipedTransportTest COMMAND TPipedTransportTest) |
| 162 | |
| 163 | set(AllProtocolsTest_SOURCES |
| 164 | AllProtocolTests.cpp |
| 165 | AllProtocolTests.tcc |
| 166 | GenericHelpers |
| 167 | ) |
| 168 | |
| 169 | add_executable(AllProtocolsTest ${AllProtocolsTest_SOURCES}) |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame^] | 170 | target_link_libraries(AllProtocolsTest |
| 171 | testgencpp |
| 172 | ${Boost_LIBRARIES} |
| 173 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 174 | LINK_AGAINST_THRIFT_LIBRARY(AllProtocolsTest thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 175 | add_test(NAME AllProtocolsTest COMMAND AllProtocolsTest) |
| 176 | |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 177 | # The debug run-time in Windows asserts on isprint() with negative inputs |
| 178 | if (NOT MSVC OR (MSVC AND CMAKE_BUILD_TYPE EQUAL "DEBUG")) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 179 | add_executable(DebugProtoTest DebugProtoTest.cpp) |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame^] | 180 | target_link_libraries(DebugProtoTest |
| 181 | testgencpp |
| 182 | ${Boost_LIBRARIES} |
| 183 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 184 | LINK_AGAINST_THRIFT_LIBRARY(DebugProtoTest thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 185 | add_test(NAME DebugProtoTest COMMAND DebugProtoTest) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 186 | endif() |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 187 | |
| 188 | add_executable(JSONProtoTest JSONProtoTest.cpp) |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame^] | 189 | target_link_libraries(JSONProtoTest |
| 190 | testgencpp |
| 191 | ${Boost_LIBRARIES} |
| 192 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 193 | LINK_AGAINST_THRIFT_LIBRARY(JSONProtoTest thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 194 | add_test(NAME JSONProtoTest COMMAND JSONProtoTest) |
| 195 | |
| 196 | add_executable(OptionalRequiredTest OptionalRequiredTest.cpp) |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame^] | 197 | target_link_libraries(OptionalRequiredTest |
| 198 | testgencpp |
| 199 | ${Boost_LIBRARIES} |
| 200 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 201 | LINK_AGAINST_THRIFT_LIBRARY(OptionalRequiredTest thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 202 | add_test(NAME OptionalRequiredTest COMMAND OptionalRequiredTest) |
| 203 | |
| 204 | add_executable(RecursiveTest RecursiveTest.cpp) |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame^] | 205 | target_link_libraries(RecursiveTest |
| 206 | testgencpp |
| 207 | ${Boost_LIBRARIES} |
| 208 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 209 | LINK_AGAINST_THRIFT_LIBRARY(RecursiveTest thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 210 | add_test(NAME RecursiveTest COMMAND RecursiveTest) |
| 211 | |
| 212 | add_executable(SpecializationTest SpecializationTest.cpp) |
Claudius Heine | 5ef662b | 2015-06-24 10:03:50 +0200 | [diff] [blame^] | 213 | target_link_libraries(SpecializationTest |
| 214 | testgencpp |
| 215 | ${Boost_LIBRARIES} |
| 216 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 217 | LINK_AGAINST_THRIFT_LIBRARY(SpecializationTest thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 218 | add_test(NAME SpecializationTest COMMAND SpecializationTest) |
| 219 | |
| 220 | set(concurrency_test_SOURCES |
| 221 | concurrency/Tests.cpp |
| 222 | concurrency/ThreadFactoryTests.h |
| 223 | concurrency/ThreadManagerTests.h |
| 224 | concurrency/TimerManagerTests.h |
| 225 | ) |
| 226 | add_executable(concurrency_test ${concurrency_test_SOURCES}) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 227 | LINK_AGAINST_THRIFT_LIBRARY(concurrency_test thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 228 | add_test(NAME concurrency_test COMMAND concurrency_test) |
| 229 | |
| 230 | set(link_test_SOURCES |
| 231 | link/LinkTest.cpp |
Nobuaki Sukegawa | 6304a53 | 2014-12-18 01:30:58 +0900 | [diff] [blame] | 232 | gen-cpp/ParentService.h |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 233 | link/TemplatedService1.cpp |
| 234 | link/TemplatedService2.cpp |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 235 | ) |
Nobuaki Sukegawa | 6304a53 | 2014-12-18 01:30:58 +0900 | [diff] [blame] | 236 | |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 237 | add_executable(link_test ${link_test_SOURCES}) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 238 | target_link_libraries(link_test testgencpp_cob) |
| 239 | LINK_AGAINST_THRIFT_LIBRARY(link_test thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 240 | add_test(NAME link_test COMMAND link_test) |
| 241 | |
| 242 | if(WITH_LIBEVENT) |
| 243 | set(processor_test_SOURCES |
| 244 | processor/ProcessorTest.cpp |
| 245 | processor/EventLog.cpp |
| 246 | processor/ServerThread.cpp |
| 247 | processor/EventLog.h |
| 248 | processor/Handlers.h |
| 249 | processor/ServerThread.h |
| 250 | ) |
| 251 | add_executable(processor_test ${processor_test_SOURCES}) |
| 252 | target_link_libraries(processor_test |
Nobuaki Sukegawa | 6304a53 | 2014-12-18 01:30:58 +0900 | [diff] [blame] | 253 | testgencpp_cob |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 254 | ${Boost_LIBRARIES} |
| 255 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 256 | LINK_AGAINST_THRIFT_LIBRARY(processor_test thrift) |
| 257 | LINK_AGAINST_THRIFT_LIBRARY(processor_test thriftnb) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 258 | add_test(NAME processor_test COMMAND processor_test) |
Nobuaki Sukegawa | 8016af8 | 2015-01-02 23:14:22 +0900 | [diff] [blame] | 259 | |
| 260 | set(TNonblockingServerTest_SOURCES TNonblockingServerTest.cpp) |
| 261 | add_executable(TNonblockingServerTest ${TNonblockingServerTest_SOURCES}) |
| 262 | include_directories(${LIBEVENT_INCLUDE_DIRS}) |
| 263 | target_link_libraries(TNonblockingServerTest |
| 264 | testgencpp_cob |
Nobuaki Sukegawa | 8016af8 | 2015-01-02 23:14:22 +0900 | [diff] [blame] | 265 | ${LIBEVENT_LIBRARIES} |
| 266 | ${Boost_LIBRARIES} |
| 267 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 268 | LINK_AGAINST_THRIFT_LIBRARY(TNonblockingServerTest thrift) |
| 269 | LINK_AGAINST_THRIFT_LIBRARY(TNonblockingServerTest thriftnb) |
Nobuaki Sukegawa | 8016af8 | 2015-01-02 23:14:22 +0900 | [diff] [blame] | 270 | add_test(NAME TNonblockingServerTest COMMAND TNonblockingServerTest) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 271 | endif() |
| 272 | |
| 273 | if(OPENSSL_FOUND AND WITH_OPENSSL) |
| 274 | add_executable(OpenSSLManualInitTest OpenSSLManualInitTest.cpp) |
| 275 | target_link_libraries(OpenSSLManualInitTest |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 276 | ${OPENSSL_LIBRARIES} |
| 277 | ${Boost_LIBRARIES} |
| 278 | ) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 279 | LINK_AGAINST_THRIFT_LIBRARY(OpenSSLManualInitTest thrift) |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 280 | add_test(NAME OpenSSLManualInitTest COMMAND OpenSSLManualInitTest) |
| 281 | endif() |
| 282 | |
Nobuaki Sukegawa | 6304a53 | 2014-12-18 01:30:58 +0900 | [diff] [blame] | 283 | if(WITH_QT4) |
Nobuaki Sukegawa | 6304a53 | 2014-12-18 01:30:58 +0900 | [diff] [blame] | 284 | set(CMAKE_AUTOMOC ON) |
| 285 | find_package(Qt4 REQUIRED COMPONENTS QtTest) |
| 286 | set(TQTcpServerTest_SOURCES |
| 287 | qt/TQTcpServerTest.cpp |
| 288 | ) |
| 289 | add_executable(TQTcpServerTest ${TQTcpServerTest_SOURCES}) |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 290 | target_link_libraries(TQTcpServerTest testgencpp_cob thriftqt Qt4::QtTest) |
| 291 | LINK_AGAINST_THRIFT_LIBRARY(TQTcpServerTest thrift) |
Nobuaki Sukegawa | 6304a53 | 2014-12-18 01:30:58 +0900 | [diff] [blame] | 292 | add_test(NAME TQTcpServerTest COMMAND TQTcpServerTest) |
| 293 | endif() |
| 294 | |
Nobuaki Sukegawa | 6622877 | 2014-12-07 21:45:33 +0900 | [diff] [blame] | 295 | if(WITH_QT5) |
| 296 | add_subdirectory(qt) |
| 297 | endif() |
| 298 | |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 299 | # |
| 300 | # Common thrift code generation rules |
| 301 | # |
| 302 | |
| 303 | |
Ben Craig | 1684c42 | 2015-04-24 08:52:44 -0500 | [diff] [blame] | 304 | add_custom_command(OUTPUT gen-cpp/DebugProtoTest_types.cpp gen-cpp/DebugProtoTest_types.h gen-cpp/EmptyService.cpp gen-cpp/EmptyService.h |
Pascal Bach | d5f87e1 | 2014-12-12 15:59:17 +0100 | [diff] [blame] | 305 | COMMAND thrift-compiler --gen cpp:dense ${PROJECT_SOURCE_DIR}/test/DebugProtoTest.thrift |
| 306 | ) |
| 307 | |
| 308 | add_custom_command(OUTPUT gen-cpp/EnumTest_types.cpp gen-cpp/EnumTest_types.h |
| 309 | COMMAND thrift-compiler --gen cpp ${PROJECT_SOURCE_DIR}/test/EnumTest.thrift |
| 310 | ) |
| 311 | |
| 312 | add_custom_command(OUTPUT gen-cpp/TypedefTest_types.cpp gen-cpp/TypedefTest_types.h |
| 313 | COMMAND thrift-compiler --gen cpp ${PROJECT_SOURCE_DIR}/test/TypedefTest.thrift |
| 314 | ) |
| 315 | |
| 316 | add_custom_command(OUTPUT gen-cpp/OptionalRequiredTest_types.cpp gen-cpp/OptionalRequiredTest_types.h |
| 317 | COMMAND thrift-compiler --gen cpp:dense ${PROJECT_SOURCE_DIR}/test/OptionalRequiredTest.thrift |
| 318 | ) |
| 319 | |
| 320 | add_custom_command(OUTPUT gen-cpp/Recursive_types.cpp gen-cpp/Recursive_types.h |
| 321 | COMMAND thrift-compiler --gen cpp ${PROJECT_SOURCE_DIR}/test/Recursive.thrift |
| 322 | ) |
| 323 | |
| 324 | add_custom_command(OUTPUT gen-cpp/Service.cpp gen-cpp/StressTest_types.cpp |
| 325 | COMMAND thrift-compiler --gen cpp:dense ${PROJECT_SOURCE_DIR}/test/StressTest.thrift |
| 326 | ) |
| 327 | |
| 328 | add_custom_command(OUTPUT gen-cpp/SecondService.cpp gen-cpp/ThriftTest_constants.cpp gen-cpp/ThriftTest.cpp gen-cpp/ThriftTest_types.cpp gen-cpp/ThriftTest_types.h |
| 329 | COMMAND thrift-compiler --gen cpp:dense ${PROJECT_SOURCE_DIR}/test/ThriftTest.thrift |
| 330 | ) |
| 331 | |
| 332 | add_custom_command(OUTPUT gen-cpp/ChildService.cpp gen-cpp/ChildService.h gen-cpp/ParentService.cpp gen-cpp/ParentService.h gen-cpp/proc_types.cpp gen-cpp/proc_types.h |
| 333 | COMMAND thrift-compiler --gen cpp:templates,cob_style ${CMAKE_CURRENT_SOURCE_DIR}/processor/proc.thrift |
| 334 | ) |