Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « GcodeProcessorLib - github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1dfca4e1c4e945401424466bee2001d295f16903 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
cmake_minimum_required (VERSION "3.13")

project(GcodeProcessorLib C CXX)

# create a version information header - version.h
# First get the current branch and store to GIT_BRANCH variable
execute_process(
  COMMAND git rev-parse --abbrev-ref HEAD
  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
  OUTPUT_VARIABLE GIT_BRANCH
  OUTPUT_STRIP_TRAILING_WHITESPACE
)

# get the current commit version
execute_process(
  COMMAND git log -1 --format=%h
  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
  OUTPUT_VARIABLE GIT_COMMIT_HASH
  OUTPUT_STRIP_TRAILING_WHITESPACE
)

# get the most recent tagged version
execute_process(
  COMMAND git describe --tags
  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
  OUTPUT_VARIABLE GIT_TAGGED_VERSION
  OUTPUT_STRIP_TRAILING_WHITESPACE
)

# get the build date
string(TIMESTAMP BUILD_DATE "%Y-%m-%dT%H:%M:%SZ" UTC)
# get the copyright date
string(TIMESTAMP BUILD_YEAR "%Y" UTC)

# add a definition so our libraries know that the version info is available
add_definitions("-DHAS_GENERATED_VERSION")

# Generate version.h CMAKE_BINARY_DIR
configure_file(
  "${PROJECT_SOURCE_DIR}/version.generated.h.in"
  "${CMAKE_BINARY_DIR}/version.generated.h"
)
# create a version information header - version.h
# First get the current branch and store to GIT_BRANCH variable
execute_process(
  COMMAND git rev-parse --abbrev-ref HEAD
  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
  OUTPUT_VARIABLE GIT_BRANCH
  OUTPUT_STRIP_TRAILING_WHITESPACE
)

# get the current commit version
execute_process(
  COMMAND git log -1 --format=%h
  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
  OUTPUT_VARIABLE GIT_COMMIT_HASH
  OUTPUT_STRIP_TRAILING_WHITESPACE
)

# get the most recent tagged version
execute_process(
  COMMAND git describe
  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
  OUTPUT_VARIABLE GIT_TAGGED_VERSION
  OUTPUT_STRIP_TRAILING_WHITESPACE
)

# get the tag for the current branch
execute_process(
  COMMAND git describe --abbrev=0
  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
  OUTPUT_VARIABLE GIT_TAG
  OUTPUT_STRIP_TRAILING_WHITESPACE
)

# get the build date
string(TIMESTAMP BUILD_DATE "%Y-%m-%dT%H:%M:%SZ" UTC)
# get the copyright date
string(TIMESTAMP BUILD_YEAR "%Y" UTC)

# add a definition so our libraries know that the version info is available
add_definitions("-DHAS_GENERATED_VERSION")

# Generate version.h CMAKE_BINARY_DIR
configure_file(
  "${PROJECT_SOURCE_DIR}/version.generated.h.in"
  "${CMAKE_BINARY_DIR}/GcodeProcessorLib/generated/version.generated.h"
)
include_directories("${CMAKE_BINARY_DIR}/GcodeProcessorLib/generated/")

option(USE_CXX_EXCEPTIONS "Enable C++ exception support" ON)

# include sourcelist.cmake, which contains our source list and exposes it as the
# GcodeProcessorLibSources variable
include(sourcelist.cmake)

# Add a library using our GcodeProcessorLibSources variable from our sourcelist file
add_library(${PROJECT_NAME} STATIC ${GcodeProcessorLibSources})


install(
    TARGETS ${PROJECT_NAME}
    ARCHIVE DESTINATION lib
    LIBRARY DESTINATION lib  # <-- Add this line
    COMPONENT library
)

# Required on Unix OS family to be able to be linked into shared libraries.
set_target_properties(${PROJECT_NAME}
                      PROPERTIES POSITION_INDEPENDENT_CODE ON)

target_link_libraries(${PROJECT_NAME})

# Expose the public includes via a cache variable
set(${PROJECT_NAME}_INCLUDE_DIRS ${PROJECT_SOURCE_DIR}
    CACHE INTERNAL "${PROJECT_NAME}: Include Directories" FORCE)