Sha256: 29ab7ce7ba02d770305ce494fbbd61666f069003cecf223beb73150ac85b2126

Contents?: true

Size: 803 Bytes

Versions: 8

Compression:

Stored size: 803 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(wincon 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/wincon/CMakeLists.txt
curses-1.4.5 vendor/PDCurses/wincon/CMakeLists.txt
curses-1.4.4 vendor/PDCurses/wincon/CMakeLists.txt
curses-1.4.4.beta.1 vendor/PDCurses/wincon/CMakeLists.txt
curses-1.4.3 vendor/PDCurses/wincon/CMakeLists.txt
curses-1.4.2 vendor/PDCurses/wincon/CMakeLists.txt
curses-1.4.1 vendor/PDCurses/wincon/CMakeLists.txt
curses-1.4.0 vendor/PDCurses/wincon/CMakeLists.txt