Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
clean-and-itasks
clean-ide
Commits
511fe838
Commit
511fe838
authored
Feb 08, 2018
by
John van Groningen
Browse files
add .exe only on windows (not on linux or macosx)
parent
6dcb7631
Changes
2
Hide whitespace changes
Inline
Side-by-side
Pm/PmPath.icl
View file @
511fe838
...
...
@@ -49,7 +49,7 @@ add_dot_exe_if_necessary module_name
MakeExecPathname
::
!
String
->
Pathname
;
MakeExecPathname
name
=
PlatformDependant
=
IF_WINDOWS
(
add_dot_exe_if_necessary
(
RemoveSuffix
name
))
// Win
(
RemoveSuffix
name
)
// Mac
...
...
Pm/PmProject.icl
View file @
511fe838
...
...
@@ -102,7 +102,7 @@ PR_NewProject main_module_file_name eo compilerOptions cgo ao prjpaths linkOptio
=
{
PR_InitProject
&
saved
=
False
,
exec
=
False
,
execpath
=
PlatformDependant
,
execpath
=
IF_WINDOWS
(
"{Project}"
+++
DirSeparatorString
+++
add_dot_exe_if_necessary
modname
)
// Win
(
"{Project}"
+++
DirSeparatorString
+++
modname
)
// Mac
,
inflist
=
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment