mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-05 02:47:00 +08:00
15 lines
505 B
CMake
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)
|
||
|
|
||
|
################################################################################
|