This is so that the icon size is not hardcoded in the widget anymore. Also the grid widget is more flexible now as it's not limited to a 3x5 grid only.
10 lines
331 B
CMake
10 lines
331 B
CMake
cmake_minimum_required(VERSION 3.3 FATAL_ERROR)
|
|
|
|
set(NANA_CMAKE_INSTALL_INCLUDES OFF CACHE BOOL "")
|
|
set(NANA_CMAKE_ENABLE_PNG OFF CACHE BOOL "")
|
|
set(NANA_CMAKE_SHARED_LIB ON CACHE BOOL "")
|
|
set(NANA_CMAKE_ENABLE_JPEG OFF CACHE BOOL "")
|
|
set(NANA_CMAKE_INSTALL OFF CACHE BOOL "")
|
|
|
|
add_subdirectory(lib/nana)
|
|
add_subdirectory(src/gui)
|