Skip to content

Commit c55d449

Browse files
committed
Add OPTION variables for GUI components
1 parent 79e6462 commit c55d449

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
cmake_minimum_required(VERSION 3.8)
22

33
option(BUILD_SHARED_LIBS "Enable compilation of shared libraries" FALSE)
4+
option(CPP_STARTER_USE_QT "Enable compilation of QT sample" FALSE)
5+
option(CPP_STARTER_USE_FLTK "Enable compilation of FLTK sample" FALSE)
6+
option(CPP_STARTER_USE_GTKMM "Enable compilation of GTKMM sample" FALSE)
7+
option(CPP_STARTER_USE_IMGUI "Enable compilation of ImGui sample" FALSE)
8+
option(CPP_STARTER_USE_NANA "Enable compilation of Nana GUI sample" FALSE)
49

510
# Link this 'library' to use the following warnings
611
add_library(project_warnings INTERFACE)

0 commit comments

Comments
 (0)