mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-04 09:49:16 +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)
|
|
|
|
################################################################################
|