# ctk_prebuild **Repository Path**: aubo-robotics/ctk_prebuild ## Basic Information - **Project Name**: ctk_prebuild - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-06 - **Last Updated**: 2021-11-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## CTK预编译库 ## CTK安装 #### 下载源码 ```bash # 原仓库 https://github.com/commontk/CTK.git # fork仓库,做了安装修复 git clone https://github.com/oPiZiL/CTK.git ``` cmake配置(可以使用ccmake工具进行配置) ```cmake CMAKE_BUILD_TYPE Release CMAKE_INSTALL_PREFIX /usr/local # 指定为自己的安装目录 CTK_BUILD_ALL OFF CTK_ENABLE_Widgets OFF CTK_BUILD_QTDESIGNER_PLUGINS ON CTK_BUILD_SHARED_LIBS ON CTK_ENABLE_PluginFramework ON CTK_ENABLE_Widgets ON CTK_LIB_Core ON CTK_LIB_PluginFramework ON CTK_LIB_Widgets ON CTK_QT_VERSION 5 ``` #### 编译及安装 ```bash cd CTK mkdir build cd build cmake .. ccmake .. make install ``` ###