CSerialPort icon indicating copy to clipboard operation
CSerialPort copied to clipboard

能不能支持外部定义安装的文件结构

Open dzylikecode opened this issue 3 months ago • 0 comments

改成这个样子

# set output directory (only if not set by parent project)
if (NOT CMAKE_RUNTIME_OUTPUT_DIRECTORY)
    set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
endif ()
if (NOT CMAKE_ARCHIVE_OUTPUT_DIRECTORY)
    set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
endif ()
if (NOT CMAKE_LIBRARY_OUTPUT_DIRECTORY)
    set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
endif ()

dzylikecode avatar Dec 01 '25 01:12 dzylikecode