CMake: Change suffix from "cxx" to "cpp" for generate sources
authorYuchen Deng <loaden@gmail.com>
Thu, 27 Sep 2012 01:13:19 +0000 (09:13 +0800)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Thu, 27 Sep 2012 13:46:53 +0000 (15:46 +0200)
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>
src/corelib/Qt5CoreMacros.cmake

index c06c913..b0d9135 100644 (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}")