Created
June 22, 2023 21:01
-
-
Save Fiona-J-W/f5ea556d6b8ece13c14e09ef13a215b3 to your computer and use it in GitHub Desktop.
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
project(project-name) | |
cmake_minimum_required(VERSION 3.11) | |
file(GLOB headers "src/*.hpp") | |
file(GLOB sources "src/*cpp") | |
add_executable(target-name ${headers} ${sources}) | |
target_compile_features(target-name PUBLIC cxx_std_20) | |
#target_link_libraries(target-name deps) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment