94 lines
3.6 KiB
CMake
94 lines
3.6 KiB
CMake
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||
|
|
# contributor license agreements. See the NOTICE file distributed with
|
||
|
|
# this work for additional information regarding copyright ownership.
|
||
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
||
|
|
# (the "License"); you may not use this file except in compliance with
|
||
|
|
# the License. You may obtain a copy of the License at
|
||
|
|
#
|
||
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
#
|
||
|
|
# Unless required by applicable law or agreed to in writing, software
|
||
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
|
# See the License for the specific language governing permissions and
|
||
|
|
# limitations under the License.
|
||
|
|
|
||
|
|
project(test)
|
||
|
|
|
||
|
|
SET(SUB_DIRS)
|
||
|
|
file(GLOB children ${CMAKE_SOURCE_DIR}/src/*)
|
||
|
|
FOREACH (child ${children})
|
||
|
|
IF (IS_DIRECTORY ${child})
|
||
|
|
LIST(APPEND SUB_DIRS ${child})
|
||
|
|
ENDIF ()
|
||
|
|
ENDFOREACH ()
|
||
|
|
LIST(APPEND SUB_DIRS ${CMAKE_SOURCE_DIR}/src)
|
||
|
|
include_directories(${CMAKE_SOURCE_DIR}/include)
|
||
|
|
include_directories(${SUB_DIRS})
|
||
|
|
|
||
|
|
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/test/bin)
|
||
|
|
|
||
|
|
include_directories(${CMAKE_SOURCE_DIR}/include)
|
||
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
||
|
|
|
||
|
|
set(Gtest_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/bin/include/gtest)
|
||
|
|
set(Gmock_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/bin/include/gmock)
|
||
|
|
|
||
|
|
include_directories(${Gtest_INCLUDE_DIR})
|
||
|
|
include_directories(${Gtest_INCLUDE_DIR}/internal)
|
||
|
|
include_directories(${Gmock_INCLUDE_DIR})
|
||
|
|
include_directories(${Gmock_INCLUDE_DIR}/internal)
|
||
|
|
|
||
|
|
set(Gtest_LIBRARY_DIRS ${CMAKE_SOURCE_DIR}/bin/lib)
|
||
|
|
set(Gtest_LIBRARIES ${Gtest_LIBRARY_DIRS}/libgtest_main.a;${Gtest_LIBRARY_DIRS}/libgtest.a)
|
||
|
|
set(Gmock_LIBRARIES ${Gtest_LIBRARY_DIRS}/libgmock_main.a;${Gtest_LIBRARY_DIRS}/libgmock.a)
|
||
|
|
message(STATUS "** Gmock_LIBRARIES: ${Gmock_LIBRARIES}")
|
||
|
|
|
||
|
|
link_directories(${Boost_LIBRARY_DIRS})
|
||
|
|
link_directories(${OPENSSL_LIBRARIES_DIR})
|
||
|
|
link_directories(${LIBEVENT_LIBRARY})
|
||
|
|
link_directories(${JSONCPP_LIBRARY})
|
||
|
|
|
||
|
|
set(ROCKETMQ_LIBRARIES ${CMAKE_SOURCE_DIR}/bin/librocketmq.a)
|
||
|
|
message(STATUS "** ROCKETMQ_LIBRARIES ${ROCKETMQ_LIBRARIES}")
|
||
|
|
|
||
|
|
function(compile files)
|
||
|
|
foreach (file ${files})
|
||
|
|
get_filename_component(basename ${file} NAME_WE)
|
||
|
|
add_executable(${basename} ${file})
|
||
|
|
add_test(NAME rocketmq-${basename} COMMAND ${basename})
|
||
|
|
if (MSVC)
|
||
|
|
if (CMAKE_CONFIGURATION_TYPES STREQUAL "Release")
|
||
|
|
set_target_properties(${basename} PROPERTIES LINK_FLAGS "/NODEFAULTLIB:LIBCMT")
|
||
|
|
else ()
|
||
|
|
set_target_properties(${basename} PROPERTIES LINK_FLAGS "/NODEFAULTLIB:LIBCMTD")
|
||
|
|
endif ()
|
||
|
|
endif ()
|
||
|
|
|
||
|
|
if (MSVC)
|
||
|
|
if (BUILD_ROCKETMQ_SHARED)
|
||
|
|
target_link_libraries(${basename} rocketmq_shared ${deplibs}
|
||
|
|
${Boost_LIBRARIES} ${OPENSSL_LIBRARIES} ${LIBEVENT_LIBRARIES} ${JSONCPP_LIBRARIES} ${x`})
|
||
|
|
else ()
|
||
|
|
target_link_libraries(${basename} rocketmq_static ${deplibs}
|
||
|
|
${Boost_LIBRARIES} ${OPENSSL_LIBRARIES} ${LIBEVENT_LIBRARIES} ${JSONCPP_LIBRARIES} ${Gtest_LIBRARIES})
|
||
|
|
endif ()
|
||
|
|
else ()
|
||
|
|
target_link_libraries(${basename} rocketmq_shared ${deplibs})
|
||
|
|
target_link_libraries(${basename} rocketmq_shared ${Gtest_LIBRARIES})
|
||
|
|
target_link_libraries(${basename} rocketmq_shared ${Gmock_LIBRARIES})
|
||
|
|
endif ()
|
||
|
|
endforeach ()
|
||
|
|
endfunction()
|
||
|
|
|
||
|
|
file(GLOB files "src/*.c*")
|
||
|
|
compile("${files}")
|
||
|
|
|
||
|
|
file(GLOB files "src/*")
|
||
|
|
foreach (file ${files})
|
||
|
|
if (IS_DIRECTORY ${file})
|
||
|
|
file(GLOB filess "${file}/*.c*")
|
||
|
|
compile("${filess}")
|
||
|
|
endif ()
|
||
|
|
endforeach ()
|