Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
clean-and-itasks
clean-ide
Commits
511fe838
Commit
511fe838
authored
Feb 08, 2018
by
John van Groningen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add .exe only on windows (not on linux or macosx)
parent
6dcb7631
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Pm/PmPath.icl
Pm/PmPath.icl
+1
-1
Pm/PmProject.icl
Pm/PmProject.icl
+1
-1
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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