tesseract/cmake/BuildFunctions.cmake

15 lines
505 B
CMake
Raw Normal View History

2015-09-06 18:47:30 +08:00
################################################################################
#
# macros and functions
#
################################################################################
########################################
# FUNCTION project_group
########################################
function(project_group target name)
set_target_properties(${target} PROPERTIES FOLDER ${name})
endfunction(project_group)
################################################################################