Skip to content

Instantly share code, notes, and snippets.

View UnaNancyOwen's full-sized avatar

Tsukasa Sugiura UnaNancyOwen

View GitHub Profile
@UnaNancyOwen
UnaNancyOwen / VTK5.md
Last active January 9, 2024 09:32
Building VTK with Visual Studio
@UnaNancyOwen
UnaNancyOwen / FLANN1.8.4.md
Last active January 9, 2024 08:22
Building FLANN with Visual Studio
@UnaNancyOwen
UnaNancyOwen / Boost1.55.0.md
Last active January 9, 2024 06:45
Building Boost with Visual Studio
@UnaNancyOwen
UnaNancyOwen / Eigen.md
Last active November 22, 2022 05:57
Building Eigen with Visual Studio
@UnaNancyOwen
UnaNancyOwen / PCL1.10.0.md
Last active January 10, 2024 01:05
Building PCL with Visual Studio
@UnaNancyOwen
UnaNancyOwen / QHull.2012.1.md
Last active July 1, 2021 03:33
Building QHull with Visual Studio

Building QHull 2012.1 with Visual Studio

Download

  1. QHull 2012.1 for Windows(qhull-2012.1.zip)をダウンロードしてファイルを解凍する。(C:\qhull-2012.1)
    http://www.qhull.org/download/

CMake

@UnaNancyOwen
UnaNancyOwen / OpenCV2.props
Last active August 29, 2015 14:05
Property Sheet for OpenCV 2.x
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets"/>
<!-- Debug|Win32 -->
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
@UnaNancyOwen
UnaNancyOwen / openNURBS.md
Last active August 29, 2015 14:06
Building openNURBS with Visual Studio

Building openNURBS with Visual Studio

Download

  1. C++ openNURBS SDK(opennurbs_20130711.zip)をダウンロードしてファイルを解凍する。(C:\opennurbs_20130711)
    ダウンロードにはメールアドレスを入力する必要がある。
    http://www.rhino3d.com/opennurbs

Build

@UnaNancyOwen
UnaNancyOwen / KinectSDK.props
Created September 21, 2014 12:58
Property Sheet for Kinect for Windows SDK v1
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets"/>
<!-- Debug|Win32 -->
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
@UnaNancyOwen
UnaNancyOwen / PCL1.7.2.props
Last active September 1, 2020 14:04
Property Sheet for Point Cloud Library
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets"/>
<!-- User Macros -->
<PropertyGroup Label="UserMacros">
<PCL_ROOT Condition="'$(Platform)'=='Win32'">$(ProgramFiles)\PCL 1.7.2</PCL_ROOT>
<PCL_ROOT Condition="'$(Platform)'=='x64'">$(ProgramW6432)\PCL 1.7.2</PCL_ROOT>
</PropertyGroup>