加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
# Minimum requirement for CMake version.
# 3.13 or later for Linux and Mac OSX.
# it causes error for build with cmake 3.12 or earlier.
# 3.12 or later for Windows
# because Qt5.9 only support MSVC2017,
# and MSVC2017 is integrated with cmake 3.12.
cmake_policy(SET CMP0042 NEW)
cmake_minimum_required (VERSION 3.12)
project(VNote VERSION 2.8.2
DESCRIPTION "VNote is a markdown note taking application"
HOMEPAGE_URL "https://tamlok.github.io/vnote"
LANGUAGES C CXX)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
## Qt5 configurations
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTORCC ON)
# find Qt5 installation
find_package(Qt5 REQUIRED COMPONENTS Core Gui Network PrintSupport WebChannel WebEngine
WebEngineWidgets Positioning Svg Widgets LinguistTools
HINTS
"/opt/qt59/lib/cmake/Qt5/"
"c:/Qt/Qt5.9.8/5.9.8/msvc2017_64/lib/cmake/Qt5/"
"c:/Qt/Qt5.9.9/5.9.9/msvc2017_64/lib/cmake/Qt5/"
"/usr/local/Cellar/qt/5.9.8/clang_64/lib/cmake/Qt5/"
"/usr/local/Cellar/qt/5.9.9/clang_64/lib/cmake/Qt5/")
## hoedown library
add_library(hoedown STATIC
hoedown/src/autolink.c hoedown/src/document.c hoedown/src/html.c hoedown/src/html_smartypants.c
hoedown/src/version.c hoedown/src/buffer.c hoedown/src/escape.c hoedown/src/html_blocks.c
hoedown/src/stack.c )
target_link_libraries(hoedown PRIVATE Qt5::Core Qt5::Gui)
## peg-highlight library
add_library(peg-highlight STATIC peg-highlight/pmh_parser.c peg-highlight/pmh_styleparser.c)
target_link_libraries(peg-highlight PRIVATE Qt5::Core Qt5::Gui)
## project sources
add_subdirectory(src)
include(${CMAKE_CURRENT_LIST_DIR}/Packaging.cmake)
# vim: ts=2 sw=2 sts=2 et
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化