mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 12:35:19 +02:00
17 lines
422 B
CMake
17 lines
422 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(injector)
|
|
|
|
# grab the implemenation and header files
|
|
file(GLOB INJECTOR_SRCS src/*.cpp src/*.h)
|
|
|
|
# add the executable
|
|
add_executable(injector ${INJECTOR_SRCS})
|
|
|
|
# link the shared hifi library
|
|
include(../LinkHifiShared.cmake)
|
|
link_hifi_shared_library(injector)
|
|
|
|
# link the threads library
|
|
find_package(Threads REQUIRED)
|
|
target_link_libraries(injector ${CMAKE_THREAD_LIBS_INIT})
|