Skip to content

Commit

Permalink
add missing details info for .exe on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Nelson-numerical-software committed Dec 1, 2023
1 parent 742899a commit bfb8344
Show file tree
Hide file tree
Showing 13 changed files with 173 additions and 10 deletions.
2 changes: 1 addition & 1 deletion modules/main/nelson_adv_cli/NelSon-adv-cli.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
<ClInclude Include="resource.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Resource.rc" />
<ResourceCompile Include="resource.rc" />
</ItemGroup>
<ItemGroup>
<Image Include="..\..\..\resources\fibonacci.ico" />
Expand Down
2 changes: 1 addition & 1 deletion modules/main/nelson_adv_cli/NelSon-adv-cli.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Resource.rc">
<ResourceCompile Include="resource.rc">
<Filter>Resource Files</Filter>
</ResourceCompile>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,48 @@ END

#endif // APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
//
// Version
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,7,11,0
PRODUCTVERSION 0,7,11,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x0L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040c04b0"
BEGIN
VALUE "FileDescription", "Nelson Application"
VALUE "InternalName", "Nelson"
VALUE "OriginalFilename", "nelson-adv-cli.exe"
VALUE "ProductName", "Nelson"
VALUE "ProductVersion", "0,7,11,0"
VALUE "FileVersion", "0,7,11,0"
VALUE "LegalCopyright", "Nelson Copyright (C) 2016-present"
VALUE "Comments", "All rights reserved."
VALUE "CompanyName", "Allan CORNET"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x40c, 1200
END
END



#endif // French (France) resources
/////////////////////////////////////////////////////////////////////////////

Expand Down
2 changes: 1 addition & 1 deletion modules/main/nelson_cli/NelSon-cli.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
<ClInclude Include="resource.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Resource.rc" />
<ResourceCompile Include="resource.rc" />
</ItemGroup>
<ItemGroup>
<Image Include="..\..\..\resources\fibonacci.ico" />
Expand Down
2 changes: 1 addition & 1 deletion modules/main/nelson_cli/NelSon-cli.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Resource.rc">
<ResourceCompile Include="resource.rc">
<Filter>Resource Files</Filter>
</ResourceCompile>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,48 @@ END

#endif // APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
//
// Version
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,7,11,0
PRODUCTVERSION 0,7,11,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x0L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040c04b0"
BEGIN
VALUE "FileDescription", "Nelson Application"
VALUE "InternalName", "Nelson"
VALUE "OriginalFilename", "nelson-cli.exe"
VALUE "ProductName", "Nelson"
VALUE "ProductVersion", "0,7,11,0"
VALUE "FileVersion", "0,7,11,0"
VALUE "LegalCopyright", "Nelson Copyright (C) 2016-present"
VALUE "Comments", "All rights reserved."
VALUE "CompanyName", "Allan CORNET"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x40c, 1200
END
END



#endif // French (France) resources
/////////////////////////////////////////////////////////////////////////////

Expand Down
2 changes: 1 addition & 1 deletion modules/main/nelson_gui/NelSon-gui.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Resource.rc" />
<ResourceCompile Include="resource.rc" />
</ItemGroup>
<ItemGroup>
<Text Include="..\CMakeLists.txt" />
Expand Down
2 changes: 1 addition & 1 deletion modules/main/nelson_gui/NelSon-gui.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Resource.rc">
<ResourceCompile Include="resource.rc">
<Filter>Resource Files</Filter>
</ResourceCompile>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,47 @@ END

#endif // APSTUDIO_INVOKED

#endif // French (France) resources
/////////////////////////////////////////////////////////////////////////////
//
// Version
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,7,11,0
PRODUCTVERSION 0,7,11,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x0L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040c04b0"
BEGIN
VALUE "FileDescription", "Nelson Application"
VALUE "InternalName", "Nelson"
VALUE "OriginalFilename", "nelson-gui.exe"
VALUE "ProductName", "Nelson"
VALUE "ProductVersion", "0,7,11,0"
VALUE "FileVersion", "0,7,11,0"
VALUE "LegalCopyright", "Nelson Copyright (C) 2016-present"
VALUE "Comments", "All rights reserved."
VALUE "CompanyName", "Allan CORNET"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x40c, 1200
END
END

#endif // French (France) resources
/////////////////////////////////////////////////////////////////////////////


#ifndef APSTUDIO_INVOKED
Expand Down
2 changes: 1 addition & 1 deletion modules/main/nelson_sio_cli/NelSon-sio-cli.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
<ClInclude Include="resource.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Resource.rc" />
<ResourceCompile Include="resource.rc" />
</ItemGroup>
<ItemGroup>
<Image Include="..\..\..\resources\fibonacci.ico" />
Expand Down
2 changes: 1 addition & 1 deletion modules/main/nelson_sio_cli/NelSon-sio-cli.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Resource.rc">
<ResourceCompile Include="resource.rc">
<Filter>Resource Files</Filter>
</ResourceCompile>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,48 @@ END

#endif // APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
//
// Version
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,7,11,0
PRODUCTVERSION 0,7,11,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x0L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040c04b0"
BEGIN
VALUE "FileDescription", "Nelson Application"
VALUE "InternalName", "Nelson"
VALUE "OriginalFilename", "nelson-sio-cli.exe"
VALUE "ProductName", "Nelson"
VALUE "ProductVersion", "0,7,11,0"
VALUE "FileVersion", "0,7,11,0"
VALUE "LegalCopyright", "Nelson Copyright (C) 2016-present"
VALUE "Comments", "All rights reserved."
VALUE "CompanyName", "Allan CORNET"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x40c, 1200
END
END



#endif // French (France) resources
/////////////////////////////////////////////////////////////////////////////

Expand Down
1 change: 0 additions & 1 deletion modules/mex/src/cpp/MxArrayOf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ ArrayOfRealToMexArray(const ArrayOf& array, mxClassID classID)
mwSize num_dim;
mwSize* dim_vec = GetDimensions(array, num_dim);
mxArray* ret = mxCreateNumericArray(num_dim, dim_vec, classID, mxREAL);
mxFree(dim_vec);
dim_vec = nullptr;
if (ret) {
auto* sp = (nlsType*)array.getDataPointer();
Expand Down

0 comments on commit bfb8344

Please sign in to comment.