Skip to content

Instantly share code, notes, and snippets.

@NobodyFeng
NobodyFeng / qtyaml.h
Created August 20, 2020 07:15 — forked from brcha/qtyaml.h
Qt Yaml support using yaml-cpp library
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* ***** END LICENSE BLOCK ***** */
/*
@NobodyFeng
NobodyFeng / CMakeLists.txt
Created January 17, 2021 12:07 — forked from Logrus/CMakeLists.txt
PCL Viewer with Qt GUI minimal code
cmake_minimum_required(VERSION 2.6)
PROJECT(qt_vtk_pcl)
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR})
find_package(PCL 1.7 REQUIRED)
include_directories(${PCL_INCLUDE_DIRS})
link_directories(${PCL_LIBRARY_DIRS})
@NobodyFeng
NobodyFeng / CMakeLists.txt
Created January 17, 2021 12:07 — forked from Logrus/CMakeLists.txt
PCL Viewer with Qt GUI minimal code
cmake_minimum_required(VERSION 2.6)
PROJECT(qt_vtk_pcl)
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR})
find_package(PCL 1.7 REQUIRED)
include_directories(${PCL_INCLUDE_DIRS})
link_directories(${PCL_LIBRARY_DIRS})