I’d like to make it like that for my projects, but I don’t use windows so I can’t do well with packaging them. And sometimes when I try it runs in the computer, but then doesn’t run in other computers because of missing dlls or some other things.
Anyone have good idea how to make it easy. Using windows VM is such a hassle to install and such just for tiny programs I make.
It’s in rust. Problem is the gtk part, it has to be installed in the system, which makes it run there. But how do I distribute the program without having everyone install gtk on their computer. In Linux it’s just a dependency so it’s not a problem, for windows I can’t seem to make it work.
Edit: also, I need gtk because people around me who uses windows aren’t going to use CLI program at all.
I’d like to make it like that for my projects, but I don’t use windows so I can’t do well with packaging them. And sometimes when I try it runs in the computer, but then doesn’t run in other computers because of missing dlls or some other things.
Anyone have good idea how to make it easy. Using windows VM is such a hassle to install and such just for tiny programs I make.
Make them in a portable language. Something like Java for example. Or you can write in rust and compile for each target.
It’s in rust. Problem is the gtk part, it has to be installed in the system, which makes it run there. But how do I distribute the program without having everyone install gtk on their computer. In Linux it’s just a dependency so it’s not a problem, for windows I can’t seem to make it work.
Edit: also, I need gtk because people around me who uses windows aren’t going to use CLI program at all.