How to pack a Vala application under Windows?How to distribute a GTK+ application on Windows?How can I develop for iPhone using a Windows development machine?How can you find out which process is listening on a port on Windows?Is there an equivalent of 'which' on the Windows command line?How do I install pip on Windows?How do I install and use curl on Windows?Can't start Eclipse - Java was started but returned exit code=13Set gtk property using valaVala for Windows: Install WebKitVala examples compile errorsHow to distribute a GTK+ application on Windows?
putting logo on same line but after title, latex
What does "Scientists rise up against statistical significance" mean? (Comment in Nature)
What exact color does ozone gas have?
Has any country ever had 2 former presidents in jail simultaneously?
Mixing PEX brands
Non-trope happy ending?
How to hide some fields of struct in C?
Fear of getting stuck on one programming language / technology that is not used in my country
Does an advisor owe his/her student anything? Will an advisor keep a PhD student only out of pity?
How to rewrite equation of hyperbola in standard form
Is there an injective, monotonically increasing, strictly concave function from the reals, to the reals?
Does the Linux kernel need a file system to run?
Why does a simple loop result in ASYNC_NETWORK_IO waits?
When were female captains banned from Starfleet?
What if a revenant (monster) gains fire resistance?
Why is it that I can sometimes guess the next note?
Why did the EU agree to delay the Brexit deadline?
How to cover method return statement in Apex Class?
Is this toilet slogan correct usage of the English language?
Store Credit Card Information in Password Manager?
Can I say "fingers" when referring to toes?
How should I respond when I lied about my education and the company finds out through background check?
Why does AES have exactly 10 rounds for a 128-bit key, 12 for 192 bits and 14 for a 256-bit key size?
Terse Method to Swap Lowest for Highest?
How to pack a Vala application under Windows?
How to distribute a GTK+ application on Windows?How can I develop for iPhone using a Windows development machine?How can you find out which process is listening on a port on Windows?Is there an equivalent of 'which' on the Windows command line?How do I install pip on Windows?How do I install and use curl on Windows?Can't start Eclipse - Java was started but returned exit code=13Set gtk property using valaVala for Windows: Install WebKitVala examples compile errorsHow to distribute a GTK+ application on Windows?
On windows I use Vala via MSYS2. How do I properly package the application so that it can run on another computer(along with Gtk). What and where windows should be placed from MSYS2 dll to exe you can run from anywhere?
windows package vala
add a comment |
On windows I use Vala via MSYS2. How do I properly package the application so that it can run on another computer(along with Gtk). What and where windows should be placed from MSYS2 dll to exe you can run from anywhere?
windows package vala
1
Possible duplicate of How to distribute a GTK+ application on Windows?
– Jens Mühlenhoff
Mar 7 at 9:57
add a comment |
On windows I use Vala via MSYS2. How do I properly package the application so that it can run on another computer(along with Gtk). What and where windows should be placed from MSYS2 dll to exe you can run from anywhere?
windows package vala
On windows I use Vala via MSYS2. How do I properly package the application so that it can run on another computer(along with Gtk). What and where windows should be placed from MSYS2 dll to exe you can run from anywhere?
windows package vala
windows package vala
asked Mar 7 at 6:05
gavrgavr
826
826
1
Possible duplicate of How to distribute a GTK+ application on Windows?
– Jens Mühlenhoff
Mar 7 at 9:57
add a comment |
1
Possible duplicate of How to distribute a GTK+ application on Windows?
– Jens Mühlenhoff
Mar 7 at 9:57
1
1
Possible duplicate of How to distribute a GTK+ application on Windows?
– Jens Mühlenhoff
Mar 7 at 9:57
Possible duplicate of How to distribute a GTK+ application on Windows?
– Jens Mühlenhoff
Mar 7 at 9:57
add a comment |
1 Answer
1
active
oldest
votes
You are using MSYS2 so you could try a three staged approach:
- Create a
PKGBUILD
file and usemakepkg-mingw
to build a MSYS2 package of your application - Install MSYS2 in a temporary directory and then your application's MSYS2 package, this will resolve the dependencies
- Use a tool like msitools or NSIS to create an installer for the files in your temporary directory, msitools plays nicer with installs in a corporate environment, but is not graphical, NSIS provides a GUI interface
Some references:
Building and distributing your application - GTK Windows download page
How to build your GTK+ application on Windows - detailed instructions for building the intermediate MSYS2 package, by Ignacio Casal Quinteiro- What is major difference between MSI and EXE installation files?
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55037063%2fhow-to-pack-a-vala-application-under-windows%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You are using MSYS2 so you could try a three staged approach:
- Create a
PKGBUILD
file and usemakepkg-mingw
to build a MSYS2 package of your application - Install MSYS2 in a temporary directory and then your application's MSYS2 package, this will resolve the dependencies
- Use a tool like msitools or NSIS to create an installer for the files in your temporary directory, msitools plays nicer with installs in a corporate environment, but is not graphical, NSIS provides a GUI interface
Some references:
Building and distributing your application - GTK Windows download page
How to build your GTK+ application on Windows - detailed instructions for building the intermediate MSYS2 package, by Ignacio Casal Quinteiro- What is major difference between MSI and EXE installation files?
add a comment |
You are using MSYS2 so you could try a three staged approach:
- Create a
PKGBUILD
file and usemakepkg-mingw
to build a MSYS2 package of your application - Install MSYS2 in a temporary directory and then your application's MSYS2 package, this will resolve the dependencies
- Use a tool like msitools or NSIS to create an installer for the files in your temporary directory, msitools plays nicer with installs in a corporate environment, but is not graphical, NSIS provides a GUI interface
Some references:
Building and distributing your application - GTK Windows download page
How to build your GTK+ application on Windows - detailed instructions for building the intermediate MSYS2 package, by Ignacio Casal Quinteiro- What is major difference between MSI and EXE installation files?
add a comment |
You are using MSYS2 so you could try a three staged approach:
- Create a
PKGBUILD
file and usemakepkg-mingw
to build a MSYS2 package of your application - Install MSYS2 in a temporary directory and then your application's MSYS2 package, this will resolve the dependencies
- Use a tool like msitools or NSIS to create an installer for the files in your temporary directory, msitools plays nicer with installs in a corporate environment, but is not graphical, NSIS provides a GUI interface
Some references:
Building and distributing your application - GTK Windows download page
How to build your GTK+ application on Windows - detailed instructions for building the intermediate MSYS2 package, by Ignacio Casal Quinteiro- What is major difference between MSI and EXE installation files?
You are using MSYS2 so you could try a three staged approach:
- Create a
PKGBUILD
file and usemakepkg-mingw
to build a MSYS2 package of your application - Install MSYS2 in a temporary directory and then your application's MSYS2 package, this will resolve the dependencies
- Use a tool like msitools or NSIS to create an installer for the files in your temporary directory, msitools plays nicer with installs in a corporate environment, but is not graphical, NSIS provides a GUI interface
Some references:
Building and distributing your application - GTK Windows download page
How to build your GTK+ application on Windows - detailed instructions for building the intermediate MSYS2 package, by Ignacio Casal Quinteiro- What is major difference between MSI and EXE installation files?
answered Mar 7 at 10:23
AlThomasAlThomas
2,852517
2,852517
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55037063%2fhow-to-pack-a-vala-application-under-windows%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Possible duplicate of How to distribute a GTK+ application on Windows?
– Jens Mühlenhoff
Mar 7 at 9:57