curses 1.3.2 → 1.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/macos.yml +19 -0
- data/.github/workflows/ubuntu.yml +26 -0
- data/.github/workflows/windows.yml +25 -0
- data/History.md +27 -0
- data/README.md +14 -46
- data/Rakefile +0 -86
- data/curses.gemspec +3 -4
- data/ext/curses/curses.c +194 -38
- data/ext/curses/extconf.rb +81 -22
- data/lib/curses.rb +5 -12
- data/sample/addch.rb +16 -0
- data/sample/attr_demo.rb +32 -0
- data/sample/colors.rb +26 -0
- data/sample/mouse_move.rb +75 -0
- data/vendor/PDCurses/.gitignore +47 -0
- data/vendor/PDCurses/.travis.yml +49 -0
- data/vendor/PDCurses/CMakeLists.txt +68 -0
- data/vendor/PDCurses/HISTORY.md +2036 -0
- data/vendor/PDCurses/IMPLEMNT.md +327 -0
- data/vendor/PDCurses/Makefile +27 -0
- data/vendor/PDCurses/README.md +77 -0
- data/vendor/PDCurses/acs_defs.h +265 -0
- data/vendor/PDCurses/appveyor.yml +218 -0
- data/vendor/PDCurses/cmake/README.md +71 -0
- data/vendor/PDCurses/cmake/build_dependencies.cmake +178 -0
- data/vendor/PDCurses/cmake/build_options.cmake +25 -0
- data/vendor/PDCurses/cmake/dll_version.cmake +26 -0
- data/vendor/PDCurses/cmake/gen_config_header.cmake +43 -0
- data/vendor/PDCurses/cmake/get_version.cmake +17 -0
- data/vendor/PDCurses/cmake/make_uninstall.cmake +19 -0
- data/vendor/PDCurses/cmake/project_common.cmake +121 -0
- data/vendor/PDCurses/cmake/resource.in.cmake +52 -0
- data/vendor/PDCurses/cmake/sdl2_ttf/CMakeLists.txt +83 -0
- data/vendor/PDCurses/cmake/target_arch.cmake +36 -0
- data/vendor/PDCurses/cmake/version.in.cmake +73 -0
- data/vendor/PDCurses/cmake/watcom_open_dos16_toolchain.cmake +96 -0
- data/vendor/PDCurses/cmake/watcom_open_dos32_toolchain.cmake +106 -0
- data/vendor/PDCurses/cmake/watcom_open_os2v2_toolchain.cmake +105 -0
- data/vendor/PDCurses/curses.h +1846 -0
- data/vendor/PDCurses/curspriv.h +134 -0
- data/vendor/PDCurses/demos/README.md +25 -0
- data/vendor/PDCurses/demos/firework.c +144 -0
- data/vendor/PDCurses/demos/newtest.c +581 -0
- data/vendor/PDCurses/demos/ozdemo.c +447 -0
- data/vendor/PDCurses/demos/ptest.c +283 -0
- data/vendor/PDCurses/demos/rain.c +157 -0
- data/vendor/PDCurses/demos/testcurs.c +1607 -0
- data/vendor/PDCurses/demos/tui.c +1048 -0
- data/vendor/PDCurses/demos/tui.h +65 -0
- data/vendor/PDCurses/demos/tuidemo.c +233 -0
- data/vendor/PDCurses/demos/version.c +61 -0
- data/vendor/PDCurses/demos/worm.c +432 -0
- data/vendor/PDCurses/demos/xmas.c +955 -0
- data/vendor/PDCurses/dos/CMakeLists.txt +47 -0
- data/vendor/PDCurses/dos/Makefile +105 -0
- data/vendor/PDCurses/dos/Makefile.bcc +83 -0
- data/vendor/PDCurses/dos/Makefile.dmc +257 -0
- data/vendor/PDCurses/dos/Makefile.msc +113 -0
- data/vendor/PDCurses/dos/Makefile.wcc +107 -0
- data/vendor/PDCurses/dos/README.md +51 -0
- data/vendor/PDCurses/dos/bccdos.lrf +9 -0
- data/vendor/PDCurses/dos/mscdos.lrf +50 -0
- data/vendor/PDCurses/dos/pdcclip.c +132 -0
- data/vendor/PDCurses/dos/pdcdisp.c +135 -0
- data/vendor/PDCurses/dos/pdcdos.h +194 -0
- data/vendor/PDCurses/dos/pdcgetsc.c +98 -0
- data/vendor/PDCurses/dos/pdckbd.c +513 -0
- data/vendor/PDCurses/dos/pdcscrn.c +785 -0
- data/vendor/PDCurses/dos/pdcsetsc.c +101 -0
- data/vendor/PDCurses/dos/pdcutil.c +212 -0
- data/vendor/PDCurses/libobjs.mif +26 -0
- data/vendor/PDCurses/makedist.mif +20 -0
- data/vendor/PDCurses/man/Makefile +37 -0
- data/vendor/PDCurses/man/README.md +21 -0
- data/vendor/PDCurses/man/intro.md +361 -0
- data/vendor/PDCurses/man/manext.c +119 -0
- data/vendor/PDCurses/man/sdl.md +152 -0
- data/vendor/PDCurses/man/sdl2.md +58 -0
- data/vendor/PDCurses/man/x11.md +407 -0
- data/vendor/PDCurses/ncurses/CMakeLists.txt +66 -0
- data/vendor/PDCurses/ncurses/README.md +26 -0
- data/vendor/PDCurses/ncurses/makefile +29 -0
- data/vendor/PDCurses/os2/CMakeLists.txt +41 -0
- data/vendor/PDCurses/os2/Makefile +132 -0
- data/vendor/PDCurses/os2/Makefile.bcc +90 -0
- data/vendor/PDCurses/os2/Makefile.wcc +43 -0
- data/vendor/PDCurses/os2/README.md +43 -0
- data/vendor/PDCurses/os2/iccos2.lrf +50 -0
- data/vendor/PDCurses/os2/iccos2.mak +256 -0
- data/vendor/PDCurses/os2/pdcclip.c +188 -0
- data/vendor/PDCurses/os2/pdcdisp.c +93 -0
- data/vendor/PDCurses/os2/pdcgetsc.c +89 -0
- data/vendor/PDCurses/os2/pdckbd.c +521 -0
- data/vendor/PDCurses/os2/pdcos2.h +55 -0
- data/vendor/PDCurses/os2/pdcscrn.c +449 -0
- data/vendor/PDCurses/os2/pdcsetsc.c +112 -0
- data/vendor/PDCurses/os2/pdcutil.c +52 -0
- data/vendor/PDCurses/panel.h +56 -0
- data/vendor/PDCurses/pdcurses/README.md +25 -0
- data/vendor/PDCurses/pdcurses/addch.c +693 -0
- data/vendor/PDCurses/pdcurses/addchstr.c +245 -0
- data/vendor/PDCurses/pdcurses/addstr.c +240 -0
- data/vendor/PDCurses/pdcurses/attr.c +359 -0
- data/vendor/PDCurses/pdcurses/beep.c +68 -0
- data/vendor/PDCurses/pdcurses/bkgd.c +223 -0
- data/vendor/PDCurses/pdcurses/border.c +411 -0
- data/vendor/PDCurses/pdcurses/clear.c +159 -0
- data/vendor/PDCurses/pdcurses/color.c +298 -0
- data/vendor/PDCurses/pdcurses/debug.c +109 -0
- data/vendor/PDCurses/pdcurses/delch.c +96 -0
- data/vendor/PDCurses/pdcurses/deleteln.c +211 -0
- data/vendor/PDCurses/pdcurses/deprec.c +27 -0
- data/vendor/PDCurses/pdcurses/getch.c +417 -0
- data/vendor/PDCurses/pdcurses/getstr.c +474 -0
- data/vendor/PDCurses/pdcurses/getyx.c +139 -0
- data/vendor/PDCurses/pdcurses/inch.c +127 -0
- data/vendor/PDCurses/pdcurses/inchstr.c +214 -0
- data/vendor/PDCurses/pdcurses/initscr.c +367 -0
- data/vendor/PDCurses/pdcurses/inopts.c +324 -0
- data/vendor/PDCurses/pdcurses/insch.c +271 -0
- data/vendor/PDCurses/pdcurses/insstr.c +264 -0
- data/vendor/PDCurses/pdcurses/instr.c +246 -0
- data/vendor/PDCurses/pdcurses/kernel.c +259 -0
- data/vendor/PDCurses/pdcurses/keyname.c +157 -0
- data/vendor/PDCurses/pdcurses/mouse.c +438 -0
- data/vendor/PDCurses/pdcurses/move.c +57 -0
- data/vendor/PDCurses/pdcurses/outopts.c +159 -0
- data/vendor/PDCurses/pdcurses/overlay.c +214 -0
- data/vendor/PDCurses/pdcurses/pad.c +260 -0
- data/vendor/PDCurses/pdcurses/panel.c +633 -0
- data/vendor/PDCurses/pdcurses/printw.c +126 -0
- data/vendor/PDCurses/pdcurses/refresh.c +279 -0
- data/vendor/PDCurses/pdcurses/scanw.c +578 -0
- data/vendor/PDCurses/pdcurses/scr_dump.c +213 -0
- data/vendor/PDCurses/pdcurses/scroll.c +101 -0
- data/vendor/PDCurses/pdcurses/slk.c +591 -0
- data/vendor/PDCurses/pdcurses/termattr.c +182 -0
- data/vendor/PDCurses/pdcurses/terminfo.c +217 -0
- data/vendor/PDCurses/pdcurses/touch.c +163 -0
- data/vendor/PDCurses/pdcurses/util.c +312 -0
- data/vendor/PDCurses/pdcurses/window.c +569 -0
- data/vendor/PDCurses/sdl1/Makefile +129 -0
- data/vendor/PDCurses/sdl1/Makefile.mng +110 -0
- data/vendor/PDCurses/sdl1/README.md +31 -0
- data/vendor/PDCurses/sdl1/deffont.h +385 -0
- data/vendor/PDCurses/sdl1/deficon.h +23 -0
- data/vendor/PDCurses/sdl1/pdcclip.c +131 -0
- data/vendor/PDCurses/sdl1/pdcdisp.c +373 -0
- data/vendor/PDCurses/sdl1/pdcgetsc.c +30 -0
- data/vendor/PDCurses/sdl1/pdckbd.c +405 -0
- data/vendor/PDCurses/sdl1/pdcscrn.c +414 -0
- data/vendor/PDCurses/sdl1/pdcsdl.h +31 -0
- data/vendor/PDCurses/sdl1/pdcsetsc.c +64 -0
- data/vendor/PDCurses/sdl1/pdcutil.c +40 -0
- data/vendor/PDCurses/sdl1/sdltest.c +79 -0
- data/vendor/PDCurses/sdl2/CMakeLists.txt +76 -0
- data/vendor/PDCurses/sdl2/Makefile +135 -0
- data/vendor/PDCurses/sdl2/Makefile.vc +164 -0
- data/vendor/PDCurses/sdl2/README.md +34 -0
- data/vendor/PDCurses/sdl2/deffont.h +385 -0
- data/vendor/PDCurses/sdl2/deficon.h +23 -0
- data/vendor/PDCurses/sdl2/pdcclip.c +93 -0
- data/vendor/PDCurses/sdl2/pdcdisp.c +534 -0
- data/vendor/PDCurses/sdl2/pdcgetsc.c +30 -0
- data/vendor/PDCurses/sdl2/pdckbd.c +480 -0
- data/vendor/PDCurses/sdl2/pdcscrn.c +443 -0
- data/vendor/PDCurses/sdl2/pdcsdl.h +33 -0
- data/vendor/PDCurses/sdl2/pdcsetsc.c +67 -0
- data/vendor/PDCurses/sdl2/pdcutil.c +39 -0
- data/vendor/PDCurses/sdl2/sdltest.c +81 -0
- data/vendor/PDCurses/term.h +48 -0
- data/vendor/PDCurses/version.mif +7 -0
- data/vendor/PDCurses/vt/CMakeLists.txt +28 -0
- data/vendor/PDCurses/vt/Makefile +135 -0
- data/vendor/PDCurses/vt/Makefile.bcc +111 -0
- data/vendor/PDCurses/vt/Makefile.dmc +258 -0
- data/vendor/PDCurses/vt/Makefile.vc +144 -0
- data/vendor/PDCurses/vt/Makefile.wcc +107 -0
- data/vendor/PDCurses/vt/README.md +64 -0
- data/vendor/PDCurses/vt/pdcclip.c +20 -0
- data/vendor/PDCurses/vt/pdcdisp.c +284 -0
- data/vendor/PDCurses/vt/pdcgetsc.c +27 -0
- data/vendor/PDCurses/vt/pdckbd.c +394 -0
- data/vendor/PDCurses/vt/pdcscrn.c +434 -0
- data/vendor/PDCurses/vt/pdcsetsc.c +45 -0
- data/vendor/PDCurses/vt/pdcutil.c +43 -0
- data/vendor/PDCurses/vt/pdcvt.h +16 -0
- data/vendor/PDCurses/watcom.mif +68 -0
- data/vendor/PDCurses/wincon/CMakeLists.txt +27 -0
- data/vendor/PDCurses/wincon/Makefile.bcc +88 -0
- data/vendor/PDCurses/wincon/Makefile.dmc +256 -0
- data/vendor/PDCurses/wincon/Makefile.lcc +273 -0
- data/vendor/PDCurses/wincon/Makefile.mng +176 -0
- data/vendor/PDCurses/wincon/Makefile.vc +144 -0
- data/vendor/PDCurses/wincon/Makefile.wcc +51 -0
- data/vendor/PDCurses/wincon/README.md +85 -0
- data/vendor/PDCurses/wincon/pdcclip.c +174 -0
- data/vendor/PDCurses/wincon/pdcdisp.c +143 -0
- data/vendor/PDCurses/wincon/pdcgetsc.c +55 -0
- data/vendor/PDCurses/wincon/pdckbd.c +786 -0
- data/vendor/PDCurses/wincon/pdcscrn.c +717 -0
- data/vendor/PDCurses/wincon/pdcsetsc.c +91 -0
- data/vendor/PDCurses/wincon/pdcurses.ico +0 -0
- data/vendor/PDCurses/wincon/pdcurses.rc +28 -0
- data/vendor/PDCurses/wincon/pdcutil.c +41 -0
- data/vendor/PDCurses/wincon/pdcwin.h +31 -0
- data/vendor/PDCurses/wingui/CMakeLists.txt +27 -0
- data/vendor/PDCurses/wingui/Makefile.bcc +85 -0
- data/vendor/PDCurses/wingui/Makefile.dmc +259 -0
- data/vendor/PDCurses/wingui/Makefile.lcc +273 -0
- data/vendor/PDCurses/wingui/Makefile.mng +171 -0
- data/vendor/PDCurses/wingui/Makefile.vc +144 -0
- data/vendor/PDCurses/wingui/Makefile.wcc +51 -0
- data/vendor/PDCurses/wingui/README.md +93 -0
- data/vendor/PDCurses/wingui/pdcclip.c +174 -0
- data/vendor/PDCurses/wingui/pdcdisp.c +718 -0
- data/vendor/PDCurses/wingui/pdcgetsc.c +30 -0
- data/vendor/PDCurses/wingui/pdckbd.c +143 -0
- data/vendor/PDCurses/wingui/pdcscrn.c +2797 -0
- data/vendor/PDCurses/wingui/pdcsetsc.c +89 -0
- data/vendor/PDCurses/wingui/pdcurses.ico +0 -0
- data/vendor/PDCurses/wingui/pdcurses.rc +28 -0
- data/vendor/PDCurses/wingui/pdcutil.c +61 -0
- data/vendor/PDCurses/wingui/pdcwin.h +122 -0
- data/vendor/PDCurses/x11/Makefile.in +754 -0
- data/vendor/PDCurses/x11/PDCurses.spec +82 -0
- data/vendor/PDCurses/x11/README.md +62 -0
- data/vendor/PDCurses/x11/ScrollBox.c +319 -0
- data/vendor/PDCurses/x11/ScrollBox.h +51 -0
- data/vendor/PDCurses/x11/ScrollBoxP.h +70 -0
- data/vendor/PDCurses/x11/aclocal.m4 +994 -0
- data/vendor/PDCurses/x11/big_icon.xbm +46 -0
- data/vendor/PDCurses/x11/compose.h +201 -0
- data/vendor/PDCurses/x11/config.guess +1500 -0
- data/vendor/PDCurses/x11/config.h.in +100 -0
- data/vendor/PDCurses/x11/config.sub +1616 -0
- data/vendor/PDCurses/x11/configure +6700 -0
- data/vendor/PDCurses/x11/configure.ac +295 -0
- data/vendor/PDCurses/x11/debian/changelog +6 -0
- data/vendor/PDCurses/x11/debian/compat +1 -0
- data/vendor/PDCurses/x11/debian/control +11 -0
- data/vendor/PDCurses/x11/debian/copyright +27 -0
- data/vendor/PDCurses/x11/debian/rules +98 -0
- data/vendor/PDCurses/x11/install-sh +253 -0
- data/vendor/PDCurses/x11/little_icon.xbm +14 -0
- data/vendor/PDCurses/x11/ncurses_cfg.h +45 -0
- data/vendor/PDCurses/x11/pdcclip.c +173 -0
- data/vendor/PDCurses/x11/pdcdisp.c +85 -0
- data/vendor/PDCurses/x11/pdcgetsc.c +28 -0
- data/vendor/PDCurses/x11/pdckbd.c +104 -0
- data/vendor/PDCurses/x11/pdcscrn.c +258 -0
- data/vendor/PDCurses/x11/pdcsetsc.c +95 -0
- data/vendor/PDCurses/x11/pdcutil.c +52 -0
- data/vendor/PDCurses/x11/pdcx11.c +316 -0
- data/vendor/PDCurses/x11/pdcx11.h +191 -0
- data/vendor/PDCurses/x11/sb.c +155 -0
- data/vendor/PDCurses/x11/x11.c +3686 -0
- data/vendor/PDCurses/x11/xcurses-config.in +81 -0
- metadata +259 -25
- data/.travis.yml +0 -16
- data/appveyor.yml +0 -16
@@ -0,0 +1,96 @@
|
|
1
|
+
# This module is shared by multiple languages; use include blocker.
|
2
|
+
if(__WINDOWS_OPENWATCOM)
|
3
|
+
return()
|
4
|
+
endif()
|
5
|
+
set(__WINDOWS_OPENWATCOM 1)
|
6
|
+
|
7
|
+
set(CMAKE_LIBRARY_PATH_FLAG "libpath ")
|
8
|
+
set(CMAKE_LINK_LIBRARY_FLAG "library ")
|
9
|
+
set(CMAKE_LINK_LIBRARY_FILE_FLAG "library")
|
10
|
+
|
11
|
+
if(CMAKE_VERBOSE_MAKEFILE)
|
12
|
+
set(CMAKE_WCL_QUIET)
|
13
|
+
set(CMAKE_WLINK_QUIET)
|
14
|
+
set(CMAKE_LIB_QUIET)
|
15
|
+
else()
|
16
|
+
set(CMAKE_WCL_QUIET "-zq")
|
17
|
+
set(CMAKE_WLINK_QUIET "op q")
|
18
|
+
set(CMAKE_LIB_QUIET "-q")
|
19
|
+
endif()
|
20
|
+
|
21
|
+
string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT " ")
|
22
|
+
|
23
|
+
set(CMAKE_C_COMPILE_OPTIONS_DLL "")
|
24
|
+
set(CMAKE_SHARED_LIBRARY_C_FLAGS "")
|
25
|
+
|
26
|
+
message(STATUS "Configured for 16-bit DOS")
|
27
|
+
set(WATCOM_DOS16 TRUE)
|
28
|
+
set(WATCOM_DOS32 FALSE)
|
29
|
+
set(CMAKE_C_COMPILER "wcc")
|
30
|
+
set(SYSTEM_NAME dos)
|
31
|
+
|
32
|
+
set(CMAKE_ASM_COMPILER "wasm")
|
33
|
+
|
34
|
+
set(CMAKE_BUILD_TYPE_INIT Debug)
|
35
|
+
|
36
|
+
string(APPEND CMAKE_C_FLAGS_INIT " -bt=${SYSTEM_NAME}")
|
37
|
+
|
38
|
+
foreach(type CREATE_SHARED_LIBRARY CREATE_SHARED_MODULE LINK_EXECUTABLE)
|
39
|
+
set(CMAKE_C_${type}_USE_WATCOM_QUOTE 1)
|
40
|
+
endforeach()
|
41
|
+
|
42
|
+
set(CMAKE_C_CREATE_IMPORT_LIBRARY
|
43
|
+
"wlib -q -n -b <TARGET_IMPLIB> +<TARGET_QUOTED>")
|
44
|
+
|
45
|
+
set(CMAKE_C_LINK_EXECUTABLE
|
46
|
+
"wlink ${CMAKE_START_TEMP_FILE} ${CMAKE_WLINK_QUIET} system ${SYSTEM_NAME} name <TARGET> <LINK_FLAGS> file {<OBJECTS>} <LINK_LIBRARIES> ${CMAKE_END_TEMP_FILE}")
|
47
|
+
|
48
|
+
# compile a C file into an object file
|
49
|
+
set(CMAKE_C_COMPILE_OBJECT
|
50
|
+
"<CMAKE_C_COMPILER> ${CMAKE_START_TEMP_FILE} ${CMAKE_WCL_QUIET} -d+ <DEFINES> <INCLUDES> <FLAGS> -fo=\"<OBJECT>\" \"<SOURCE>\"${CMAKE_END_TEMP_FILE}")
|
51
|
+
|
52
|
+
# preprocess a C source file
|
53
|
+
set(CMAKE_C_CREATE_PREPROCESSED_SOURCE
|
54
|
+
"<CMAKE_C_COMPILER> ${CMAKE_START_TEMP_FILE} ${CMAKE_WCL_QUIET} -d+ <DEFINES> <INCLUDES> <FLAGS> -fo=\"<PREPROCESSED_SOURCE>\" -pl \"<SOURCE>\"${CMAKE_END_TEMP_FILE}")
|
55
|
+
|
56
|
+
string(REPLACE " option implib=<TARGET_IMPLIB>" ""
|
57
|
+
CMAKE_CXX_CREATE_SHARED_MODULE "${CMAKE_CXX_CREATE_SHARED_LIBRARY}")
|
58
|
+
|
59
|
+
# create a C shared library
|
60
|
+
set(CMAKE_C_CREATE_SHARED_LIBRARY ${CMAKE_CXX_CREATE_SHARED_LIBRARY})
|
61
|
+
|
62
|
+
# create a C shared module
|
63
|
+
set(CMAKE_C_CREATE_SHARED_MODULE ${CMAKE_CXX_CREATE_SHARED_MODULE})
|
64
|
+
|
65
|
+
# create a C static library
|
66
|
+
set(CMAKE_C_CREATE_STATIC_LIBRARY "wlib ${CMAKE_LIB_QUIET} -c -n -b <TARGET_QUOTED> <LINK_FLAGS> <OBJECTS> ")
|
67
|
+
|
68
|
+
if(NOT _CMAKE_WATCOM_VERSION)
|
69
|
+
set(_CMAKE_WATCOM_VERSION 1)
|
70
|
+
if(CMAKE_C_COMPILER_VERSION)
|
71
|
+
set(_compiler_version ${CMAKE_C_COMPILER_VERSION})
|
72
|
+
set(_compiler_id ${CMAKE_C_COMPILER_ID})
|
73
|
+
endif()
|
74
|
+
set(WATCOM16)
|
75
|
+
set(WATCOM17)
|
76
|
+
set(WATCOM18)
|
77
|
+
set(WATCOM19)
|
78
|
+
set(WATCOM20)
|
79
|
+
if("${_compiler_id}" STREQUAL "OpenWatcom")
|
80
|
+
if("${_compiler_version}" VERSION_LESS 1.7)
|
81
|
+
set(WATCOM16 1)
|
82
|
+
endif()
|
83
|
+
if("${_compiler_version}" VERSION_EQUAL 1.7)
|
84
|
+
set(WATCOM17 1)
|
85
|
+
endif()
|
86
|
+
if("${_compiler_version}" VERSION_EQUAL 1.8)
|
87
|
+
set(WATCOM18 1)
|
88
|
+
endif()
|
89
|
+
if("${_compiler_version}" VERSION_EQUAL 1.9)
|
90
|
+
set(WATCOM19 1)
|
91
|
+
endif()
|
92
|
+
if("${_compiler_version}" VERSION_EQUAL 2.0)
|
93
|
+
set(WATCOM20 1)
|
94
|
+
endif()
|
95
|
+
endif()
|
96
|
+
endif()
|
@@ -0,0 +1,106 @@
|
|
1
|
+
# This module is shared by multiple languages; use include blocker.
|
2
|
+
if(__WINDOWS_OPENWATCOM)
|
3
|
+
return()
|
4
|
+
endif()
|
5
|
+
set(__WINDOWS_OPENWATCOM 1)
|
6
|
+
|
7
|
+
set(CMAKE_LIBRARY_PATH_FLAG "libpath ")
|
8
|
+
set(CMAKE_LINK_LIBRARY_FLAG "library ")
|
9
|
+
set(CMAKE_LINK_LIBRARY_FILE_FLAG "library")
|
10
|
+
|
11
|
+
if(CMAKE_VERBOSE_MAKEFILE)
|
12
|
+
set(CMAKE_WCL_QUIET)
|
13
|
+
set(CMAKE_WLINK_QUIET)
|
14
|
+
set(CMAKE_LIB_QUIET)
|
15
|
+
else()
|
16
|
+
set(CMAKE_WCL_QUIET "-zq")
|
17
|
+
set(CMAKE_WLINK_QUIET "op q")
|
18
|
+
set(CMAKE_LIB_QUIET "-q")
|
19
|
+
endif()
|
20
|
+
|
21
|
+
string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT " ")
|
22
|
+
|
23
|
+
set(CMAKE_C_COMPILE_OPTIONS_DLL "")
|
24
|
+
set(CMAKE_SHARED_LIBRARY_C_FLAGS "")
|
25
|
+
|
26
|
+
message(STATUS "Configured for 32-bit DOS")
|
27
|
+
set(WATCOM_DOS16 FALSE)
|
28
|
+
set(WATCOM_DOS32 TRUE)
|
29
|
+
set(CMAKE_C_COMPILER "wcc386")
|
30
|
+
set(SYSTEM_NAME dos4g)
|
31
|
+
|
32
|
+
# detect folder, add lib386 directory
|
33
|
+
execute_process(
|
34
|
+
COMMAND where ${CMAKE_C_COMPILER}
|
35
|
+
OUTPUT_VARIABLE COMPILER_PATH
|
36
|
+
OUTPUT_STRIP_TRAILING_WHITESPACE
|
37
|
+
)
|
38
|
+
get_filename_component(COMPILER_DIR ${COMPILER_PATH} PATH)
|
39
|
+
get_filename_component(WATCOM_TOOLCHAIN_DIR "${COMPILER_DIR}/.." ABSOLUTE)
|
40
|
+
string(APPEND LINK_LIBRARIES_PATH "${WATCOM_TOOLCHAIN_DIR}/lib386;${WATCOM_TOOLCHAIN_DIR}/lib386/dos")
|
41
|
+
|
42
|
+
set(CMAKE_ASM_COMPILER "wasm")
|
43
|
+
|
44
|
+
set(CMAKE_BUILD_TYPE_INIT Debug)
|
45
|
+
|
46
|
+
string(APPEND CMAKE_C_FLAGS_INIT " -bt=${SYSTEM_NAME}")
|
47
|
+
|
48
|
+
foreach(type CREATE_SHARED_LIBRARY CREATE_SHARED_MODULE LINK_EXECUTABLE)
|
49
|
+
set(CMAKE_C_${type}_USE_WATCOM_QUOTE 1)
|
50
|
+
endforeach()
|
51
|
+
|
52
|
+
set(CMAKE_C_CREATE_IMPORT_LIBRARY
|
53
|
+
"wlib -q -n -b <TARGET_IMPLIB> +<TARGET_QUOTED>")
|
54
|
+
|
55
|
+
set(CMAKE_C_LINK_EXECUTABLE
|
56
|
+
"wlink ${CMAKE_START_TEMP_FILE} ${CMAKE_WLINK_QUIET} system ${SYSTEM_NAME} name <TARGET> <LINK_FLAGS> file {<OBJECTS>} <LINK_LIBRARIES> ${CMAKE_END_TEMP_FILE}")
|
57
|
+
|
58
|
+
# compile a C file into an object file
|
59
|
+
set(CMAKE_C_COMPILE_OBJECT
|
60
|
+
"<CMAKE_C_COMPILER> ${CMAKE_START_TEMP_FILE} ${CMAKE_WCL_QUIET} -d+ <DEFINES> <INCLUDES> <FLAGS> -fo=\"<OBJECT>\" \"<SOURCE>\"${CMAKE_END_TEMP_FILE}")
|
61
|
+
|
62
|
+
# preprocess a C source file
|
63
|
+
set(CMAKE_C_CREATE_PREPROCESSED_SOURCE
|
64
|
+
"<CMAKE_C_COMPILER> ${CMAKE_START_TEMP_FILE} ${CMAKE_WCL_QUIET} -d+ <DEFINES> <INCLUDES> <FLAGS> -fo=\"<PREPROCESSED_SOURCE>\" -pl \"<SOURCE>\"${CMAKE_END_TEMP_FILE}")
|
65
|
+
|
66
|
+
string(REPLACE " option implib=<TARGET_IMPLIB>" ""
|
67
|
+
CMAKE_CXX_CREATE_SHARED_MODULE "${CMAKE_CXX_CREATE_SHARED_LIBRARY}")
|
68
|
+
|
69
|
+
# create a C shared library
|
70
|
+
set(CMAKE_C_CREATE_SHARED_LIBRARY ${CMAKE_CXX_CREATE_SHARED_LIBRARY})
|
71
|
+
|
72
|
+
# create a C shared module
|
73
|
+
set(CMAKE_C_CREATE_SHARED_MODULE ${CMAKE_CXX_CREATE_SHARED_MODULE})
|
74
|
+
|
75
|
+
# create a C static library
|
76
|
+
set(CMAKE_C_CREATE_STATIC_LIBRARY "wlib ${CMAKE_LIB_QUIET} -c -n -b <TARGET_QUOTED> <LINK_FLAGS> <OBJECTS> ")
|
77
|
+
|
78
|
+
if(NOT _CMAKE_WATCOM_VERSION)
|
79
|
+
set(_CMAKE_WATCOM_VERSION 1)
|
80
|
+
if(CMAKE_C_COMPILER_VERSION)
|
81
|
+
set(_compiler_version ${CMAKE_C_COMPILER_VERSION})
|
82
|
+
set(_compiler_id ${CMAKE_C_COMPILER_ID})
|
83
|
+
endif()
|
84
|
+
set(WATCOM16)
|
85
|
+
set(WATCOM17)
|
86
|
+
set(WATCOM18)
|
87
|
+
set(WATCOM19)
|
88
|
+
set(WATCOM20)
|
89
|
+
if("${_compiler_id}" STREQUAL "OpenWatcom")
|
90
|
+
if("${_compiler_version}" VERSION_LESS 1.7)
|
91
|
+
set(WATCOM16 1)
|
92
|
+
endif()
|
93
|
+
if("${_compiler_version}" VERSION_EQUAL 1.7)
|
94
|
+
set(WATCOM17 1)
|
95
|
+
endif()
|
96
|
+
if("${_compiler_version}" VERSION_EQUAL 1.8)
|
97
|
+
set(WATCOM18 1)
|
98
|
+
endif()
|
99
|
+
if("${_compiler_version}" VERSION_EQUAL 1.9)
|
100
|
+
set(WATCOM19 1)
|
101
|
+
endif()
|
102
|
+
if("${_compiler_version}" VERSION_EQUAL 2.0)
|
103
|
+
set(WATCOM20 1)
|
104
|
+
endif()
|
105
|
+
endif()
|
106
|
+
endif()
|
@@ -0,0 +1,105 @@
|
|
1
|
+
# This module is shared by multiple languages; use include blocker.
|
2
|
+
if(__WINDOWS_OPENWATCOM)
|
3
|
+
return()
|
4
|
+
endif()
|
5
|
+
set(__WINDOWS_OPENWATCOM 1)
|
6
|
+
|
7
|
+
set(CMAKE_LIBRARY_PATH_FLAG "libpath ")
|
8
|
+
set(CMAKE_LINK_LIBRARY_FLAG "library ")
|
9
|
+
set(CMAKE_LINK_LIBRARY_FILE_FLAG "library")
|
10
|
+
|
11
|
+
if(CMAKE_VERBOSE_MAKEFILE)
|
12
|
+
set(CMAKE_WCL_QUIET)
|
13
|
+
set(CMAKE_WLINK_QUIET)
|
14
|
+
set(CMAKE_LIB_QUIET)
|
15
|
+
else()
|
16
|
+
set(CMAKE_WCL_QUIET "-zq")
|
17
|
+
set(CMAKE_WLINK_QUIET "op q")
|
18
|
+
set(CMAKE_LIB_QUIET "-q")
|
19
|
+
endif()
|
20
|
+
|
21
|
+
string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT " ")
|
22
|
+
|
23
|
+
set(CMAKE_C_COMPILE_OPTIONS_DLL "")
|
24
|
+
set(CMAKE_SHARED_LIBRARY_C_FLAGS "")
|
25
|
+
|
26
|
+
message(STATUS "Configured for OS/2 v2")
|
27
|
+
set(WATCOM_OS2V2 TRUE)
|
28
|
+
set(CMAKE_C_COMPILER "wcc386")
|
29
|
+
set(SYSTEM_NAME os2v2)
|
30
|
+
|
31
|
+
# detect folder, add lib386 directory
|
32
|
+
execute_process(
|
33
|
+
COMMAND where ${CMAKE_C_COMPILER}
|
34
|
+
OUTPUT_VARIABLE COMPILER_PATH
|
35
|
+
OUTPUT_STRIP_TRAILING_WHITESPACE
|
36
|
+
)
|
37
|
+
get_filename_component(COMPILER_DIR ${COMPILER_PATH} PATH)
|
38
|
+
get_filename_component(WATCOM_TOOLCHAIN_DIR "${COMPILER_DIR}/.." ABSOLUTE)
|
39
|
+
string(APPEND LINK_LIBRARIES_PATH "${WATCOM_TOOLCHAIN_DIR}/lib386;${WATCOM_TOOLCHAIN_DIR}/lib386/dos")
|
40
|
+
|
41
|
+
set(CMAKE_ASM_COMPILER "wasm")
|
42
|
+
|
43
|
+
set(CMAKE_BUILD_TYPE_INIT Debug)
|
44
|
+
|
45
|
+
string(APPEND CMAKE_C_FLAGS_INIT " -bt=${SYSTEM_NAME}")
|
46
|
+
|
47
|
+
foreach(type CREATE_SHARED_LIBRARY CREATE_SHARED_MODULE LINK_EXECUTABLE)
|
48
|
+
set(CMAKE_C_${type}_USE_WATCOM_QUOTE 1)
|
49
|
+
endforeach()
|
50
|
+
|
51
|
+
set(CMAKE_C_CREATE_IMPORT_LIBRARY
|
52
|
+
"wlib -q -n -b <TARGET_IMPLIB> +<TARGET_QUOTED>")
|
53
|
+
|
54
|
+
set(CMAKE_C_LINK_EXECUTABLE
|
55
|
+
"wlink ${CMAKE_START_TEMP_FILE} ${CMAKE_WLINK_QUIET} system ${SYSTEM_NAME} name <TARGET> <LINK_FLAGS> file {<OBJECTS>} <LINK_LIBRARIES> ${CMAKE_END_TEMP_FILE}")
|
56
|
+
|
57
|
+
# compile a C file into an object file
|
58
|
+
set(CMAKE_C_COMPILE_OBJECT
|
59
|
+
"<CMAKE_C_COMPILER> ${CMAKE_START_TEMP_FILE} ${CMAKE_WCL_QUIET} -d+ <DEFINES> <INCLUDES> <FLAGS> -fo=\"<OBJECT>\" \"<SOURCE>\"${CMAKE_END_TEMP_FILE}")
|
60
|
+
|
61
|
+
# preprocess a C source file
|
62
|
+
set(CMAKE_C_CREATE_PREPROCESSED_SOURCE
|
63
|
+
"<CMAKE_C_COMPILER> ${CMAKE_START_TEMP_FILE} ${CMAKE_WCL_QUIET} -d+ <DEFINES> <INCLUDES> <FLAGS> -fo=\"<PREPROCESSED_SOURCE>\" -pl \"<SOURCE>\"${CMAKE_END_TEMP_FILE}")
|
64
|
+
|
65
|
+
string(REPLACE " option implib=<TARGET_IMPLIB>" ""
|
66
|
+
CMAKE_CXX_CREATE_SHARED_MODULE "${CMAKE_CXX_CREATE_SHARED_LIBRARY}")
|
67
|
+
|
68
|
+
# create a C shared library
|
69
|
+
set(CMAKE_C_CREATE_SHARED_LIBRARY ${CMAKE_CXX_CREATE_SHARED_LIBRARY})
|
70
|
+
|
71
|
+
# create a C shared module
|
72
|
+
set(CMAKE_C_CREATE_SHARED_MODULE ${CMAKE_CXX_CREATE_SHARED_MODULE})
|
73
|
+
|
74
|
+
# create a C static library
|
75
|
+
set(CMAKE_C_CREATE_STATIC_LIBRARY "wlib ${CMAKE_LIB_QUIET} -c -n -b <TARGET_QUOTED> <LINK_FLAGS> <OBJECTS> ")
|
76
|
+
|
77
|
+
if(NOT _CMAKE_WATCOM_VERSION)
|
78
|
+
set(_CMAKE_WATCOM_VERSION 1)
|
79
|
+
if(CMAKE_C_COMPILER_VERSION)
|
80
|
+
set(_compiler_version ${CMAKE_C_COMPILER_VERSION})
|
81
|
+
set(_compiler_id ${CMAKE_C_COMPILER_ID})
|
82
|
+
endif()
|
83
|
+
set(WATCOM16)
|
84
|
+
set(WATCOM17)
|
85
|
+
set(WATCOM18)
|
86
|
+
set(WATCOM19)
|
87
|
+
set(WATCOM20)
|
88
|
+
if("${_compiler_id}" STREQUAL "OpenWatcom")
|
89
|
+
if("${_compiler_version}" VERSION_LESS 1.7)
|
90
|
+
set(WATCOM16 1)
|
91
|
+
endif()
|
92
|
+
if("${_compiler_version}" VERSION_EQUAL 1.7)
|
93
|
+
set(WATCOM17 1)
|
94
|
+
endif()
|
95
|
+
if("${_compiler_version}" VERSION_EQUAL 1.8)
|
96
|
+
set(WATCOM18 1)
|
97
|
+
endif()
|
98
|
+
if("${_compiler_version}" VERSION_EQUAL 1.9)
|
99
|
+
set(WATCOM19 1)
|
100
|
+
endif()
|
101
|
+
if("${_compiler_version}" VERSION_EQUAL 2.0)
|
102
|
+
set(WATCOM20 1)
|
103
|
+
endif()
|
104
|
+
endif()
|
105
|
+
endif()
|