Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suggestions to Enhance the Setup Experience #70

Open
Painthingy opened this issue Oct 10, 2024 · 0 comments
Open

Suggestions to Enhance the Setup Experience #70

Painthingy opened this issue Oct 10, 2024 · 0 comments

Comments

@Painthingy
Copy link

Thank you for the excellent work on this template! I have a couple of suggestions that I believe will enhance the setup experience for other users:

  1. README Update for C++20 Support:
    Update the README to tell how to use C++20 instead of C++17. Specifically, the CMakeLists.txt file should be updated from:

    target_compile_features( ${PROJECT_NAME} 
        PRIVATE
            cxx_std_17
    )

    to:

    target_compile_features( ${PROJECT_NAME}
        PRIVATE
            cxx_std_20 
    )
  2. .gitignore Update:
    To prevent the repository from growing unnecessarily large, it would be helpful to add the following lines to the .gitignore file to exclude local build output and IDE-specific files:

    /out/*
    /.vs/*
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant