File: CMakeLists.txt

package info (click to toggle)
cloudcompare 2.11.3-7.1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 58,224 kB
  • sloc: cpp: 229,982; ansic: 30,723; makefile: 84; sh: 20
file content (10 lines) | stat: -rw-r--r-- 253 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
cmake_minimum_required( VERSION 3.0 )

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

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