Skip to content

Commit

Permalink
remove pthread
Browse files Browse the repository at this point in the history
  • Loading branch information
koide3 committed Apr 28, 2024
1 parent b65f38d commit 9c52ab8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ target_include_directories(iridescence PUBLIC
)
target_link_libraries(iridescence
gl_imgui
pthread
fmt::fmt
${EXTRA_LIBRARIES}
)
Expand Down
8 changes: 6 additions & 2 deletions include/glk/split.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#pragma once
#ifndef GLK_SPLIT_HPP
#define GLK_SPLIT_HPP


#include <vector>
#include <string>
Expand Down Expand Up @@ -26,4 +28,6 @@ inline std::string trim(std::string str) {
str.erase(str.find_last_not_of(" \n\r\t") + 1);
return str;
}
}
}

#endif

0 comments on commit 9c52ab8

Please sign in to comment.