CMake: Change suffix from "cxx" to "cpp" for generate sources

Cause Qt5's source file use "cpp" as suffix
and automoc use "cpp" as suffix too.
Keep it with same feel better.

Change-Id: Iba3f8ffb5c3dbf003a9e1aacf3706089c1b6765c
Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
bb10
Yuchen Deng 2012-09-27 09:13:19 +08:00 committed by The Qt Project
parent ff70c020bc
commit 84c2236f04
1 changed files with 2 additions and 2 deletions

View File

@ -150,7 +150,7 @@ function(QT5_WRAP_CPP outfiles )
set(moc_options ${_WRAP_CPP_OPTIONS})
foreach(it ${moc_files})
get_filename_component(it ${it} ABSOLUTE)
qt5_make_output_file(${it} moc_ cxx outfile)
qt5_make_output_file(${it} moc_ cpp outfile)
qt5_create_moc_command(${it} ${outfile} "${moc_flags}" "${moc_options}")
list(APPEND ${outfiles} ${outfile})
endforeach()
@ -175,7 +175,7 @@ function(QT5_ADD_RESOURCES outfiles )
get_filename_component(outfilename ${it} NAME_WE)
get_filename_component(infile ${it} ABSOLUTE)
get_filename_component(rc_path ${infile} PATH)
set(outfile ${CMAKE_CURRENT_BINARY_DIR}/qrc_${outfilename}.cxx)
set(outfile ${CMAKE_CURRENT_BINARY_DIR}/qrc_${outfilename}.cpp)
set(_RC_DEPENDS)
if(EXISTS "${infile}")