fixed folder structure

This commit is contained in:
Alfie King 2024-09-16 15:11:25 +01:00
parent b4b05f78d3
commit 8d8f39a2ff
21 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.5)
project(owo)
add_executable(owo owo.cpp)
add_subdirectory(clip-lib)
add_executable(owo src/main.cpp)
add_subdirectory(src/clip-lib)
target_link_libraries(owo clip)

View File

@ -106,7 +106,7 @@ int help() {
}
int main(int argc, char *argv[]) {
srand(time(NULL));
srand(time(nullptr));
string input, inputfile, outputfile;
bool _stdin = false, clipboard = false, no_full_word = false, no_random_ending = false;