Sha256: 9b935d4bd6595a008dc551383e9571db6bd78c5205b9ebb11be0eeafbd210408

Contents?: true

Size: 805 Bytes

Versions: 8

Compression:

Stored size: 805 Bytes

Contents

cmake_minimum_required(VERSION 3.11)

if(NOT CMAKE_BUILD_TYPE)
    set(CMAKE_BUILD_TYPE "MinSizeRel" CACHE STRING "Choose the type of build, options are: Debug, Release, or MinSizeRel." FORCE)
    message(STATUS "No build type specified, defaulting to MinSizeRel.")
endif()

PROJECT(wingui VERSION "${PROJECT_VERSION}" LANGUAGES C)

INCLUDE(project_common)
  
demo_app(../demos version)
demo_app(../demos firework)
demo_app(../demos ozdemo)
demo_app(../demos newtest)
demo_app(../demos ptest)
demo_app(../demos rain)
demo_app(../demos testcurs)
demo_app(../demos tuidemo)
demo_app(../demos worm)
demo_app(../demos xmas)

IF(WIN32)
    SET_TARGET_PROPERTIES(${PROJECT_NAME}_newtest PROPERTIES LINK_FLAGS "/SUBSYSTEM:WINDOWS")
ENDIF(WIN32)

SET(CPACK_COMPONENTS_ALL applications)

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
curses-1.4.7 vendor/PDCurses/wingui/CMakeLists.txt
curses-1.4.5 vendor/PDCurses/wingui/CMakeLists.txt
curses-1.4.4 vendor/PDCurses/wingui/CMakeLists.txt
curses-1.4.4.beta.1 vendor/PDCurses/wingui/CMakeLists.txt
curses-1.4.3 vendor/PDCurses/wingui/CMakeLists.txt
curses-1.4.2 vendor/PDCurses/wingui/CMakeLists.txt
curses-1.4.1 vendor/PDCurses/wingui/CMakeLists.txt
curses-1.4.0 vendor/PDCurses/wingui/CMakeLists.txt