mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 21:16:00 +02:00
34 lines
No EOL
971 B
CMake
34 lines
No EOL
971 B
CMake
#
|
|
# SetupHifiProject.cmake
|
|
#
|
|
# Copyright 2013 High Fidelity, Inc.
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
|
|
macro(SETUP_HIFI_PROJECT TARGET INCLUDE_QT)
|
|
project(${TARGET})
|
|
|
|
# grab the implemenation and header files
|
|
file(GLOB TARGET_SRCS src/*)
|
|
|
|
file(GLOB SRC_SUBDIRS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/src ${CMAKE_CURRENT_SOURCE_DIR}/src/*)
|
|
|
|
foreach(DIR ${SRC_SUBDIRS})
|
|
if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/src/${DIR}")
|
|
file(GLOB DIR_CONTENTS "src/${DIR}/*")
|
|
set(TARGET_SRCS ${TARGET_SRCS} "${DIR_CONTENTS}")
|
|
endif ()
|
|
endforeach()
|
|
|
|
# add the executable, include additional optional sources
|
|
add_executable(${TARGET} ${TARGET_SRCS} ${ARGN})
|
|
|
|
if (${INCLUDE_QT})
|
|
find_package(Qt5Core REQUIRED)
|
|
qt5_use_modules(${TARGET} Core)
|
|
endif ()
|
|
|
|
target_link_libraries(${TARGET} ${QT_LIBRARIES})
|
|
endmacro() |