Skip to content

Commit

Permalink
Fix QString usages.
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Jackson <[email protected]>
  • Loading branch information
imikejackson committed Oct 25, 2023
1 parent d9db897 commit afa0f74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/Utility.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -335,11 +335,11 @@ function(cmpBuildDateRevisionString)
cmake_parse_arguments(GVS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} )

if(NOT DEFINED GVS_STRING_CLASS)
set(GVS_STRING_CLASS "QString")
set(GVS_STRING_CLASS "std::string")
endif()

if(NOT DEFINED GVS_STRING_INCLUDE)
set(GVS_STRING_INCLUDE "<QtCore/QString>")
set(GVS_STRING_INCLUDE "<string>")
endif()

if(0)
Expand Down

0 comments on commit afa0f74

Please sign in to comment.