16 lines
216 B
CMake
16 lines
216 B
CMake
###| Cmake qtermwidget |###
|
|
|
|
option(BUILD_DESIGNER_PLUGIN "Build Qt4 designer plugin" ON)
|
|
|
|
#| Setting required version
|
|
cmake_minimum_required( VERSION 2.4 )
|
|
|
|
#| Project
|
|
project( qtermwidget )
|
|
|
|
subdirs(
|
|
lib
|
|
src
|
|
)
|
|
|