Files
Datastructs/Exam/IKT203-main/Submissions/Submission-02/CMakeLists.txt
Christopher Sanden a8006be05f Adding exam part 1/4
2025-11-03 21:30:23 +01:00

14 lines
425 B
CMake

# CMakeList.txt : CMake project for Submission-01, include source and define
# project specific logic here.
#
# Add source to this project's executable.
add_executable (Submission-02 "main.cpp" "main.h")
target_link_libraries(Submission-02 PRIVATE LibExample)
if (CMAKE_VERSION VERSION_GREATER 3.20)
set_property(TARGET Submission-02 PROPERTY CXX_STANDARD 20)
endif()
# TODO: Add tests and install targets if needed.