You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
660 B

  1. # Project: cpputils ###############################################################################
  2. Project ( cpputils )
  3. File ( GLOB_RECURSE SOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/impl/*.cpp )
  4. Add_Library ( cpputils STATIC ${SOURCE_FILES} )
  5. Include_Directories ( ${CMAKE_CURRENT_SOURCE_DIR} )
  6. Target_Include_Directories (
  7. cpputils
  8. INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}
  9. )
  10. If ( __COTIRE_INCLUDED )
  11. Cotire ( cpputils )
  12. EndIf ( )