forked from EmbeddedSynth/sonivox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
69 lines (59 loc) · 2.53 KB
/
CMakeLists.txt
File metadata and controls
69 lines (59 loc) · 2.53 KB
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
#[=========================================================================[
Copyright (c) 2022-2026 Pedro López-Cabanillas
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
]=========================================================================]
add_executable ( sonivoxrender sonivoxrender.c )
if (NOT HAVE_GETOPT_H)
target_sources( sonivoxrender PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/../getopt_port/getopt.c
${CMAKE_CURRENT_SOURCE_DIR}/../getopt_port/getopt.h )
target_include_directories( sonivoxrender PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../getopt_port )
endif()
target_link_libraries ( sonivoxrender sonivox::sonivox )
install( TARGETS sonivoxrender
RUNTIME_DEPENDENCY_SET sonivox-dependencies
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT sonivox_application
)
if (BUILD_MANPAGE)
if(NOT EXISTS ${PANDOC_EXECUTABLE})
find_program(PANDOC_EXECUTABLE pandoc)
mark_as_advanced(PANDOC_EXECUTABLE)
endif()
if (EXISTS ${PANDOC_EXECUTABLE})
set(_src ${CMAKE_CURRENT_SOURCE_DIR}/sonivoxrender.1.md)
if (NOT PROJECT_RELEASE_DATE)
unset(_date)
execute_process (
COMMAND bash -c "LANG=en;date +'%B %d, %Y'"
OUTPUT_VARIABLE _date
OUTPUT_STRIP_TRAILING_WHITESPACE
)
else()
set(_date ${PROJECT_RELEASE_DATE})
endif()
set(_footer "${PROJECT_NAME} ${PROJECT_VERSION}")
add_custom_command (
OUTPUT sonivoxrender.1
COMMAND ${PANDOC_EXECUTABLE} -s -t man -Vdate=${_date} -Vfooter=${_footer} ${_src} -o sonivoxrender.1
DEPENDS ${_src}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
VERBATIM
)
add_custom_target(manpage ALL DEPENDS sonivoxrender.1)
endif()
else()
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/sonivoxrender.1 ${CMAKE_CURRENT_BINARY_DIR} COPYONLY)
endif()
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/sonivoxrender.1
DESTINATION ${CMAKE_INSTALL_MANDIR}/man1
COMPONENT sonivox_application
)