-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Brought CMake's suite of demos up to date for DOS, DOSVGA, WinCon, Wi…
…nGUI. Others to follow.
- Loading branch information
Showing
4 changed files
with
77 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,29 @@ | ||
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 WIN32) | ||
demo_app(../demos ptest) | ||
demo_app(../demos rain) | ||
demo_app(../demos testcurs) | ||
demo_app(../demos tuidemo) | ||
demo_app(../demos worm) | ||
demo_app(../demos xmas) | ||
|
||
SET(CPACK_COMPONENTS_ALL applications) | ||
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 calendar) | ||
demo_app(../demos firework) | ||
demo_app(../demos init_col) | ||
demo_app(../demos mbrot) | ||
demo_app(../demos newtest WIN32) | ||
demo_app(../demos ozdemo) | ||
demo_app(../demos picsview) | ||
demo_app(../demos ptest) | ||
demo_app(../demos rain) | ||
demo_app(../demos speed) | ||
demo_app(../demos test_pan) | ||
demo_app(../demos testcurs) | ||
demo_app(../demos version) | ||
demo_app(../demos widetest) | ||
demo_app(../demos worm) | ||
demo_app(../demos xmas) | ||
|
||
SET(CPACK_COMPONENTS_ALL applications) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
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 WIN32) | ||
demo_app(../demos ptest) | ||
demo_app(../demos rain) | ||
demo_app(../demos testcurs) | ||
demo_app(../demos tuidemo) | ||
demo_app(../demos worm) | ||
demo_app(../demos xmas) | ||
|
||
SET(CPACK_COMPONENTS_ALL applications) | ||
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 calendar) | ||
demo_app(../demos firework) | ||
demo_app(../demos init_col) | ||
demo_app(../demos mbrot) | ||
demo_app(../demos newtest WIN32) | ||
demo_app(../demos ozdemo) | ||
demo_app(../demos picsview) | ||
demo_app(../demos ptest) | ||
demo_app(../demos rain) | ||
demo_app(../demos speed) | ||
demo_app(../demos test_pan) | ||
demo_app(../demos testcurs) | ||
demo_app(../demos version) | ||
demo_app(../demos widetest) | ||
demo_app(../demos worm) | ||
demo_app(../demos xmas) | ||
|
||
|
||
SET(CPACK_COMPONENTS_ALL applications) |