mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 06:35:05 +02:00
11 lines
No EOL
251 B
CMake
11 lines
No EOL
251 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(interface)
|
|
|
|
file(GLOB INTERFACE_SRCS src/*.cpp src/*.h)
|
|
|
|
add_executable(interface ${INTERFACE_SRCS})
|
|
|
|
find_package(GLM REQUIRED)
|
|
include_directories(${GLM_INCLUDE_DIRS})
|
|
target_link_libraries(interface GLM) |