@@ -2,7 +2,7 @@ INCLUDE(SimMSVC)
2
2
3
3
# SIM_QT4_WRAP_CPP(outfiles infiles ... )
4
4
MACRO (SIM_QT4_AUTO_WRAP_CPP outfiles )
5
- # Clear list to be sure - QT4_WRAP_CPP doesnt do it
5
+ # Clear list to be sure - QT4_WRAP_CPP doesn't do it
6
6
# FIXME: Is this what we want, really? Several of the built-in macros
7
7
# behave as "append", not "set" - rolvs
8
8
SET (${outfiles} )
@@ -28,7 +28,7 @@ ENDMACRO(SIM_QT4_AUTO_WRAP_CPP)
28
28
# SIM_QT4_WRAP_ALL(outfile SOURCE infiles ... [OUTFILENAME outfilename])
29
29
# Optimized version of SIM_QT4_WRAP_CPP(). This file
30
30
# concats all mocs together before compiling, potentially reducing the
31
- # compiletime . Note that this macro requires Python.
31
+ # compile time . Note that this macro requires Python.
32
32
MACRO (SIM_QT4_AUTO_WRAP_ALL outfile)
33
33
SIM_VALIDATE_ARGUMENTS(ValidArguments SIM_QT4_AUTO_WRAP_ALL
34
34
"SOURCES" # Required
@@ -221,7 +221,7 @@ ENDMACRO(SIM_CREATE_QT4_END_JOINTRUNNER)
221
221
222
222
# - Set up a simple unittest, with name header and source
223
223
# SIM_CREATE_QT4_UNITTEST(NAME HEADER SOURCE LIBRARIES...)
224
- # NAME - the name of the unittest as it will be registred
224
+ # NAME - the name of the unittest as it will be registered
225
225
# HEADER - Headerfile of the testrunner
226
226
# SOURCE - Sourcefile, with main().
227
227
#
@@ -256,15 +256,15 @@ ENDMACRO(SIM_CREATE_QT4_UNITTEST)
256
256
# "basename", from the files basename.h and basename.cpp, which must exist,
257
257
# QtTest tests, using QTEST_MAIN().
258
258
MACRO (SIM_CREATE_QT4_UNITTEST2 name )
259
- # FIXME: We are not guarranteed that the filename is .cpp - could perhaps
259
+ # FIXME: We are not guaranteed that the filename is .cpp - could perhaps
260
260
# check for the other c++ extensions.
261
261
SIM_CREATE_QT4_UNITTEST(${name} ${name} .h ${name} .cpp ${ARGN} )
262
262
ENDMACRO (SIM_CREATE_QT4_UNITTEST2)
263
263
264
264
# Creates a plugin from one header and cpp file.
265
265
# SIM_CREATE_QT_PLUGIN(targetname ...)
266
266
# - targetname is the name of the plugin. There must be a header and a cpp
267
- # file correspoding to the targetname given.
267
+ # file corresponding to the targetname given.
268
268
# - remaining params are libraries that the plugin is to be linked against
269
269
MACRO (SIM_CREATE_QT_PLUGIN targetname)
270
270
SET (Source ${targetname} .cpp)
0 commit comments