My c++ standard is c++98 even tho i said it should use 17 in my cmake

This page summarizes the projects mentioned and recommended in the original post on /r/cpp_questions

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • FTXUI

    Features: - Functional style. Inspired by [1] and React - Simple and elegant syntax (in my opinion). - Support for UTF8 and fullwidth chars (→ 测试). - No dependencies. - Cross platform. Linux/mac (main target), Windows (experimental thanks to contributors), - WebAssembly. - Keyboard & mouse navigation. Operating systems: - linux emscripten - linux gcc - linux clang - windows msvc - mac clang

  • cmake_minimum_required (VERSION 3.8) # --- Fetch FTXUI -------------------------------------------------------------- include(FetchContent) set(FETCHCONTENT_UPDATES_DISCONNECTED TRUE) FetchContent_Declare(ftxui GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui ) FetchContent_GetProperties(ftxui) if(NOT ftxui_POPULATED) FetchContent_Populate(ftxui) add_subdirectory(${ftxui_SOURCE_DIR} ${ftxui_BINARY_DIR} EXCLUDE_FROM_ALL) endif() # ------------------------------------------------------------------------------ project ("PW-Manager" LANGUAGES CXX VERSION 1.0.0 ) # Add source to this project's executable. add_executable (PW-Manager "src/ProgramInfo.h" "src/Main.cpp" "src/StartWindow.cpp" "src/StartWindow.h" "src/FtxuiIncludes.h" "src/LoginWindow.cpp" "src/LoginWindow.h" "src/RegisterWindow.h" "src/RegisterWindow.cpp") set_target_properties(PW-Manager PROPERTIES CXX_STANDARD 17) target_compile_features(PW-Manager PRIVATE cxx_std_17) target_include_directories(PW-Manager PRIVATE src) target_link_libraries(PW-Manager PRIVATE ftxui::screen PRIVATE ftxui::dom PRIVATE ftxui::component )

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts