BuildFunctions.cmake 1.0 KB

1234567891011121314151617181920212223
  1. # Licensed under the Apache License, Version 2.0 (the "License");
  2. # you may not use this file except in compliance with the License.
  3. # You may obtain a copy of the License at
  4. # http://www.apache.org/licenses/LICENSE-2.0
  5. # Unless required by applicable law or agreed to in writing, software
  6. # distributed under the License is distributed on an "AS IS" BASIS,
  7. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  8. # See the License for the specific language governing permissions and
  9. # limitations under the License.
  10. ################################################################################
  11. #
  12. # macros and functions
  13. #
  14. ################################################################################
  15. ########################################
  16. # FUNCTION project_group
  17. ########################################
  18. function(project_group target name)
  19. set_target_properties(${target} PROPERTIES FOLDER ${name})
  20. endfunction(project_group)
  21. ################################################################################