Initial CMake stuff

This commit is contained in:
2023-08-31 18:55:36 -05:00
parent 63b8c9d465
commit c18481228a
3 changed files with 25 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
add_executable(search-algorithms
./main.cpp
)
target_include_directories(search-algorithms PUBLIC ${CMAKE_CURRENT_LIST_DIR})
+6
View File
@@ -0,0 +1,6 @@
#include <iostream>
int main () {
std::cout << "Hello world" << std::endl;
return 0;
}