Skip to content
Snippets Groups Projects
Commit 92b0b736 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

cmake man now working (after restoring more verbous solution from web source)

parent 8dee5779
No related branches found
No related tags found
No related merge requests found
ADD_CUSTOM_TARGET(man ALL)
ADD_CUSTOM_COMMAND(
TARGET man
SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/frida.pod
COMMAND pod2man ARGS -s 1 -c "frida manual" ${CMAKE_CURRENT_SOURCE_DIR}/frida.pod ${CMAKE_CURRENT_BINARY_DIR}/frida.1
OUTPUTS ${CMAKE_CURRENT_BINARY_DIR}/frida.1
)
ADD_CUSTOM_COMMAND(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/frida.1
COMMAND pod2man ARGS -s 1 -c "frida manual" frida.pod > ${CMAKE_CURRENT_BINARY_DIR}/frida.1
TARGET man
SOURCE man
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/frida.1
)
# TODO: restore html build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment