Skip to content
Snippets Groups Projects
Commit 81b6dbff authored by calrama's avatar calrama
Browse files

Remove dead code

parent bd76fe58
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,6 @@ install(
install(
FILES
${CMAKE_CURRENT_SOURCE_DIR}/cmake/TrackerPlugin.cmake
${CMAKE_CURRENT_SOURCE_DIR}/cmake/VSSugar.cmake
DESTINATION ${INSTALL_CONFIGDIR}/Modules/${PROJECT_NAME}
)
......
macro(VSSourceGroups ROOT_PATH)
file(
GLOB_RECURSE sources
LIST_DIRECTORIES false
"${ROOT_PATH}/*.c*"
"${ROOT_PATH}/*.h*"
"${ROOT_PATH}/*.ui*"
)
foreach(source IN ITEMS ${sources})
get_filename_component(path "${source}" PATH)
file(RELATIVE_PATH rel_path "${ROOT_PATH}" "${path}")
string(REPLACE "/" "\\" group_path "${rel_path}")
source_group("${group_path}" FILES "${source}")
endforeach()
endmacro()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment