tesseract/cmake/BuildFunctions.cmake
2015-09-06 13:47:30 +03:00

15 lines
505 B
CMake

################################################################################
#
# macros and functions
#
################################################################################
########################################
# FUNCTION project_group
########################################
function(project_group target name)
set_target_properties(${target} PROPERTIES FOLDER ${name})
endfunction(project_group)
################################################################################