This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Search all directories that contain headers | |
macro(HEADER_DIRECTORIES return_list) | |
file(GLOB_RECURSE new_list *.h) | |
set(dir_list "") | |
foreach(file_path ${new_list}) | |
get_filename_component(dir_path ${file_path} PATH) | |
set(dir_list ${dir_list} ${dir_path}) | |
endforeach() | |
list(REMOVE_DUPLICATES dir_list) | |
set(${return_list} ${dir_list}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Type=Service | |
Icon=com.visualstudio.code | |
X-KDE-ServiceTypes=KonqPopupMenu/Plugin | |
MimeType=text/plain; | |
Actions=openFilesInVSCode; | |
Encoding=UTF-8 | |
X-KDE-AuthorizeAction=shell_access | |
[Desktop Action openFilesInVSCode] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
print_help () { | |
echo "-h|--host HOST" | |
echo "-p|--port PORT" | |
echo "--path PATH" | |
echo "-U|--user USER" | |
echo "-P|--password PASSWORD" | |
echo "t|--time SPLIT INTERVAL" | |
echo " 00:00:10 (10 seconds)" |
NewerOlder