diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c7e8e9..b86843f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,7 +28,7 @@ target_include_directories(qr PRIVATE src lib) add_custom_target(man ALL) add_custom_command( TARGET man - COMMAND help2man -h "-h" -v "-v" -o qr.7 ${EXE_NAME} + COMMAND help2man -h "-h" -v "-v" -o qr.7 ./${EXE_NAME} COMMAND gzip -f qr.7 ) diff --git a/src/QR.cpp b/src/QR.cpp index 9187701..40b3698 100644 --- a/src/QR.cpp +++ b/src/QR.cpp @@ -36,4 +36,4 @@ void QR::render(Format format) { } } -} \ No newline at end of file +}