Skip to content

Commit

Permalink
Merge branch '21-generate-exec-wrapper-script'
Browse files Browse the repository at this point in the history
* 21-generate-exec-wrapper-script:
  Fix windows compilation by properly specifying "#elif" condition
  • Loading branch information
jcfr committed Dec 4, 2012
2 parents ac712e6 + 10d7442 commit f41d46a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Base/ctkAppLauncher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ bool ctkAppLauncher::generateExecWrapperScript()
QString scriptComment("#");
QString exportCmd("declare -x");
QString scriptExtension("sh");
#elif Q_OS_WIN32
#elif defined(Q_OS_WIN32)
QString scriptComment("::");
QString exportCmd("@set");
QString scriptExtension("bat");
Expand Down

0 comments on commit f41d46a

Please sign in to comment.