mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 17:19:03 -04:00
Support USE_CPP=off for building without a C++ compiler #1720
This commit is contained in:
parent
9970238514
commit
dd9da7766b
@ -3,13 +3,7 @@ cmake_minimum_required(VERSION 3.14.0)
|
||||
project(notcurses VERSION 2.4.3
|
||||
DESCRIPTION "Blingful UI for modern terminal emulators"
|
||||
HOMEPAGE_URL "https://nick-black.com/dankwiki/index.php/notcurses"
|
||||
LANGUAGES C CXX)
|
||||
set(CMAKE_CXX_EXTENSIONS OFF)
|
||||
set(CMAKE_C_STANDARD 11)
|
||||
set(CMAKE_C_VISIBILITY_PRESET hidden)
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
|
||||
|
||||
LANGUAGES C)
|
||||
include(CTest)
|
||||
include(GNUInstallDirs)
|
||||
include(CMakeDependentOption)
|
||||
@ -19,9 +13,10 @@ include(FeatureSummary)
|
||||
# BUILD_TESTING is defined by CTest
|
||||
option(DFSG_BUILD "DFSG build (no non-free media/code)" OFF)
|
||||
option(USE_COVERAGE "Assess code coverage with llvm-cov/lcov" OFF)
|
||||
option(USE_CPP "Build C++ code" ON)
|
||||
cmake_dependent_option(
|
||||
USE_DOCTEST "Build notcurses-tester with doctest" ON
|
||||
"${BUILD_TESTING}" OFF
|
||||
"BUILD_TESTING;USE_CPP" OFF
|
||||
)
|
||||
option(USE_DOXYGEN "Build HTML cross reference with doxygen" OFF)
|
||||
option(USE_GPM "Enable libgpm console mouse support" OFF)
|
||||
@ -42,27 +37,45 @@ set(USE_OIIO OFF)
|
||||
if(${USE_MULTIMEDIA} STREQUAL "ffmpeg")
|
||||
set(USE_FFMPEG ON)
|
||||
elseif(${USE_MULTIMEDIA} STREQUAL "oiio")
|
||||
if(NOT ${USE_CPP})
|
||||
message(FATAL_ERROR "USE_CPP must be on to use OpenImageIO.")
|
||||
endif()
|
||||
set(USE_OIIO ON)
|
||||
elseif(NOT ${USE_MULTIMEDIA} STREQUAL "none")
|
||||
message(FATAL_ERROR "USE_MULTIMEDIA must be one of 'oiio', 'ffmpeg', 'none' (was '${USE_MULTIMEDIA}')")
|
||||
message(FATAL_ERROR "USE_MULTIMEDIA must be one of 'oiio', 'ffmpeg', 'none' (was '${USE_MULTIMEDIA}').")
|
||||
endif()
|
||||
|
||||
# 3.14.0 introduced NAME_WLE
|
||||
cmake_minimum_required(VERSION 3.14.0)
|
||||
if(${USE_CPP})
|
||||
enable_language(CXX)
|
||||
endif()
|
||||
if(${USE_CPP})
|
||||
set(CMAKE_CXX_EXTENSIONS OFF)
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
|
||||
string(APPEND CMAKE_CXX_FLAGS_DEBUG " -Og")
|
||||
endif()
|
||||
set(CMAKE_C_STANDARD 11)
|
||||
set(CMAKE_C_VISIBILITY_PRESET hidden)
|
||||
|
||||
message(STATUS "Requested multimedia engine: ${USE_MULTIMEDIA}")
|
||||
message(STATUS "Requested build mode: ${CMAKE_BUILD_TYPE}")
|
||||
|
||||
string(APPEND CMAKE_C_FLAGS_DEBUG " -Og")
|
||||
string(APPEND CMAKE_CXX_FLAGS_DEBUG " -Og")
|
||||
if("${USE_COVERAGE}")
|
||||
if(${USE_COVERAGE})
|
||||
if(NOT "${CMAKE_C_COMPILER_ID}" MATCHES "(Apple)?[Cc]lang")
|
||||
message(FATAL_ERROR "USE_COVERAGE was on but CC isn't clang")
|
||||
endif()
|
||||
# FIXME requires clang11+
|
||||
string(APPEND CMAKE_C_FLAGS_DEBUG " --coverage -fprofile-instr-generate -fcoverage-mapping")
|
||||
if(${USE_CPP})
|
||||
if(NOT "${CMAKE_CXX_COMPILER_ID}" MATCHES "(Apple)?[Cc]lang")
|
||||
message(FATAL_ERROR "USE_COVERAGE was on but CXX isn't clang++")
|
||||
endif()
|
||||
# FIXME requires clang11+
|
||||
string(APPEND CMAKE_C_FLAGS_DEBUG " --coverage -fprofile-instr-generate -fcoverage-mapping")
|
||||
string(APPEND CMAKE_CXX_FLAGS_DEBUG " --coverage -fprofile-instr-generate -fcoverage-mapping")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# under msys2 (and all other operating systems) we want pkgconfig. when
|
||||
# building with visual studio, don't require it.
|
||||
@ -354,6 +367,7 @@ target_link_directories(notcurses-static PRIVATE ${OIIO_STATIC_LIBRARY_DIRS})
|
||||
endif()
|
||||
|
||||
############################################################################
|
||||
if(${USE_CPP})
|
||||
# libnotcurses++ (C++ wrappers)
|
||||
set(NCPP_SOURCES
|
||||
src/libcpp/FDPlane.cc
|
||||
@ -458,6 +472,7 @@ file(GLOB NCPP_INTERNAL_HEADERS
|
||||
CONFIGURE_DEPENDS
|
||||
LIST_DIRECTORIES false
|
||||
${PROJECT_SOURCE_DIR}/include/ncpp/internal/*.hh)
|
||||
endif()
|
||||
|
||||
export(PACKAGE notcurses)
|
||||
|
||||
@ -483,6 +498,7 @@ foreach(f ${POCSRCS})
|
||||
PRIVATE "${TERMINFO_LIBRARY_DIRS}"
|
||||
)
|
||||
endforeach()
|
||||
if(${USE_CPP})
|
||||
file(GLOB POCPPSRCS CONFIGURE_DEPENDS src/pocpp/*.cpp)
|
||||
foreach(f ${POCPPSRCS})
|
||||
get_filename_component(fe "${f}" NAME_WE)
|
||||
@ -500,6 +516,7 @@ foreach(f ${POCPPSRCS})
|
||||
)
|
||||
endforeach()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
############################################################################
|
||||
# notcurses-demo
|
||||
@ -549,6 +566,7 @@ target_link_libraries(notcurses-info
|
||||
|
||||
############################################################################
|
||||
# notcurses-input
|
||||
if(${USE_CPP})
|
||||
file(GLOB INPUTSRCS CONFIGURE_DEPENDS src/input/input.cpp)
|
||||
add_executable(notcurses-input ${INPUTSRCS})
|
||||
target_include_directories(notcurses-input
|
||||
@ -578,6 +596,7 @@ target_link_libraries(nctetris
|
||||
PRIVATE
|
||||
notcurses++
|
||||
)
|
||||
endif()
|
||||
|
||||
############################################################################
|
||||
# ncneofetch
|
||||
@ -602,7 +621,8 @@ target_link_libraries(ncneofetch
|
||||
file(GLOB MANSOURCE1 CONFIGURE_DEPENDS doc/man/man1/*.md)
|
||||
file(GLOB MANSOURCE3 CONFIGURE_DEPENDS doc/man/man3/*.md)
|
||||
|
||||
# all further binaries require multimedia support
|
||||
# all further binaries require multimedia and C++ support
|
||||
if(${USE_CPP})
|
||||
if(${USE_MULTIMEDIA} STREQUAL "none")
|
||||
list(FILTER MANSOURCE1 EXCLUDE REGEX "ncls.1.md")
|
||||
list(FILTER MANSOURCE1 EXCLUDE REGEX "ncplayer.1.md")
|
||||
@ -641,10 +661,12 @@ target_link_libraries(ncplayer
|
||||
notcurses++
|
||||
)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
############################################################################
|
||||
# testing
|
||||
if(${BUILD_TESTING})
|
||||
if(${USE_CPP})
|
||||
#set(CMAKE_CTEST_ARGUMENTS "-V")
|
||||
if(${USE_DOCTEST})
|
||||
file(GLOB TESTSRCS CONFIGURE_DEPENDS src/tests/*.cpp)
|
||||
@ -677,6 +699,7 @@ install(TARGETS notcurses-tester DESTINATION bin)
|
||||
else()
|
||||
list(FILTER MANSOURCE1 EXCLUDE REGEX "notcurses-tester.1.md")
|
||||
endif()
|
||||
endif()
|
||||
enable_testing()
|
||||
# the accursed Ubuntu buildd sets "TERM=unknown" for unfathomable reasons
|
||||
if(DEFINED ENV{TERM} AND NOT $ENV{TERM} STREQUAL "unknown" AND USE_POC)
|
||||
@ -684,6 +707,7 @@ add_test(
|
||||
NAME notcurses-info
|
||||
COMMAND notcurses-info
|
||||
)
|
||||
if(${USE_CPP})
|
||||
add_test(
|
||||
NAME ncpp_build
|
||||
COMMAND ncpp_build
|
||||
@ -692,6 +716,8 @@ add_test(
|
||||
NAME ncpp_build_exceptions
|
||||
COMMAND ncpp_build_exceptions
|
||||
)
|
||||
LIST(APPEND TESTBINS ncpp_build ncpp_build_exceptions)
|
||||
endif()
|
||||
add_test(
|
||||
NAME sgr-direct
|
||||
COMMAND sgr-direct
|
||||
@ -708,9 +734,9 @@ add_test(
|
||||
NAME rgbbg
|
||||
COMMAND rgbbg
|
||||
)
|
||||
LIST(APPEND TESTBINS notcurses-info sgr-direct sgr-full rgb rgbbg)
|
||||
set_tests_properties(
|
||||
notcurses-info ncpp_build ncpp_build_exceptions sgr-direct sgr-full rgb rgbbg
|
||||
PROPERTIES RUN_SERIAL TRUE
|
||||
${TESTBINS} PROPERTIES RUN_SERIAL TRUE
|
||||
)
|
||||
endif()
|
||||
else()
|
||||
@ -895,30 +921,34 @@ install(FILES ${MARKDOWN} DESTINATION ${CMAKE_INSTALL_DOCDIR})
|
||||
|
||||
install(TARGETS notcurses-demo DESTINATION bin)
|
||||
install(TARGETS notcurses-info DESTINATION bin)
|
||||
install(TARGETS notcurses-input DESTINATION bin)
|
||||
install(TARGETS ncneofetch DESTINATION bin)
|
||||
if(${USE_CPP})
|
||||
install(TARGETS notcurses-input DESTINATION bin)
|
||||
install(TARGETS nctetris DESTINATION bin)
|
||||
if(NOT ${USE_MULTIMEDIA} STREQUAL "none")
|
||||
install(TARGETS ncls DESTINATION bin)
|
||||
install(TARGETS ncplayer DESTINATION bin)
|
||||
endif()
|
||||
|
||||
install(TARGETS notcurses-core notcurses notcurses++
|
||||
LIBRARY
|
||||
DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
COMPONENT Libraries
|
||||
NAMELINK_COMPONENT Development
|
||||
)
|
||||
if(${USE_STATIC})
|
||||
install(
|
||||
TARGETS notcurses-core-static notcurses-static notcurses++-static
|
||||
LIBRARY
|
||||
DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
COMPONENT Libraries
|
||||
NAMELINK_COMPONENT Development
|
||||
)
|
||||
endif()
|
||||
|
||||
LIST(APPEND INSTLIBS notcurses-core notcurses)
|
||||
if(${USE_STATIC})
|
||||
LIST(APPEND INSTLIBS notcurses-core-static notcurses-static)
|
||||
endif()
|
||||
if(${USE_CPP})
|
||||
LIST(APPEND INSTLIBS notcurses++)
|
||||
if(${USE_STATIC})
|
||||
LIST(APPEND INSTLIBS notcurses++-static)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
install(TARGETS ${INSTLIBS}
|
||||
LIBRARY
|
||||
DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
COMPONENT Libraries
|
||||
NAMELINK_COMPONENT Development
|
||||
)
|
||||
|
||||
option(DUMMY_PYTHON "Build dummy python module used for compile check and Clangd" OFF)
|
||||
if(${DUMMY_PYTHON})
|
||||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
@ -95,11 +95,14 @@ but must be `Debug` for use of `USE_COVERAGE`.
|
||||
* `DFSG_BUILD`: leave out all content considered non-free under the Debian Free
|
||||
Software Guidelines
|
||||
* `BUILD_TESTING`: build test targets
|
||||
* `USE_CPP`: build C++ code (requires a C++ compiler)
|
||||
* `USE_COVERAGE`: build coverage support (for developers, requires use of Clang)
|
||||
* `USE_DOCTEST`: build `notcurses-tester` with Doctest, requires `BUILD_TESTING`
|
||||
* `USE_DOCTEST=on` requires `USE_CPP=off`
|
||||
* `USE_DOXYGEN`: build interlinked HTML documentation with Doxygen
|
||||
* `USE_GPM`: build GPM console mouse support via libgpm
|
||||
* `USE_MULTIMEDIA`: `ffmpeg` for FFmpeg, `oiio` for OpenImageIO, `none` for none
|
||||
* `oiio` cannot be used with `USE_CPP=off`
|
||||
* `USE_PANDOC`: build man pages with pandoc
|
||||
* `USE_POC`: build small, uninstalled proof-of-concept binaries
|
||||
* `USE_QRCODEGEN`: build qrcode support via libqrcodegen
|
||||
|
2
NEWS.md
2
NEWS.md
@ -10,6 +10,8 @@ rearrangements of Notcurses.
|
||||
keybindings.
|
||||
* Helper function `ncwcsrtombs()` is now available for converting a
|
||||
`wchar_t *` to a heap-allocated UTF-8 `char *`.
|
||||
* Building without a C++ compiler is now supported using `-DUSE_CPP=off`. See
|
||||
the FAQs for restrictions.
|
||||
|
||||
* 2.4.3 (2021-09-26)
|
||||
* `ncplane_erase_region()` has been made much more general, and can now
|
||||
|
@ -269,6 +269,15 @@ If things break or seem otherwise lackluster, **please** consult the
|
||||
more importantly, it will link against minimal Notcurses installations.
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary>We're paying by the electron, and have no C++ compiler. Can we still
|
||||
enjoy Notcurses goodness?</summary>
|
||||
Some of it! You won't be able to build several binaries, nor the NCPP C++
|
||||
wrappers, nor can you build with the OpenImageIO multimedia backend (OIIO
|
||||
ships C++ headers). You'll be able to build the main library, though, as
|
||||
well as `notcurses-demo` (and maybe a few other binaries).
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary>Does it work with hardware terminals?</summary>
|
||||
With the correct `TERM` value, many hardware terminals are supported. The VT100
|
||||
|
Loading…
x
Reference in New Issue
Block a user