-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
41 lines (31 loc) · 1.16 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
cmake_minimum_required(VERSION 3.15)
################################################################
# Setup the project
################################################################
set(PROJECT_NAME "anira-bela-benchmark")
project(${PROJECT_NAME} VERSION ${PROJECT_VERSION_SHORT})
message(STATUS "Building ${PROJECT_NAME} - Version: ${PROJECT_VERSION_SHORT} (${PROJECT_VERSION_FULL})")
# Sets the cpp language minimum
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED True)
################################################################
# Adding the executable
################################################################
add_executable(${PROJECT_NAME})
target_sources(${PROJECT_NAME} PRIVATE
defineBelaBenchmark.cpp
main.cpp
)
################################################################
# Linking the required libraries
################################################################
target_link_libraries(
${PROJECT_NAME}
anira::anira
dl
rt
)
################################################################
# Setup the install target
################################################################
include(cmake/install.cmake)