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.

FindSourceRCProperties.cmake 328B

12345678910
  1. # ---------------------------------
  2. # Configure RC file
  3. # Sets SRC_FILES to add the path to the newly created rc file
  4. # Adds appropriate include dir
  5. # ---------------------------------
  6. IF(WIN32)
  7. OV_CONFIGURE_RC(NAME ${PROJECT_NAME})
  8. SET(SRC_FILES "${SRC_FILES};${CMAKE_BINARY_DIR}/resource-files/${PROJECT_NAME}.rc")
  9. ENDIF()