Initial CMake stuff
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
add_executable(search-algorithms
|
||||
./main.cpp
|
||||
)
|
||||
|
||||
target_include_directories(search-algorithms PUBLIC ${CMAKE_CURRENT_LIST_DIR})
|
||||
@@ -0,0 +1,6 @@
|
||||
#include <iostream>
|
||||
|
||||
int main () {
|
||||
std::cout << "Hello world" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user