Skip to content
Permalink
5206701140
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
9 lines (6 sloc) 243 Bytes
cmake_minimum_required(VERSION 3.10.2)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
include_directories(includes)
add_subdirectory(external/Catch2)
add_executable(asgn1 src/asgn1/main.cpp)
target_link_libraries(asgn1 Catch2)