File: CMakeLists.txt

package info (click to toggle)
cloudcompare 2.10.1-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 55,916 kB
  • sloc: cpp: 219,837; ansic: 29,944; makefile: 67; sh: 45
file content (10 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
cmake_minimum_required( VERSION 3.0 )

option( INSTALL_EXAMPLE_GL_PLUGIN "Check to install example GL plugin" OFF )

# CloudCompare example GL plugin
if ( INSTALL_EXAMPLE_GL_PLUGIN )
    project( ExampleGLPlugin )
    
    include( ../../CMakePluginTpl.cmake )
endif()