C++ project to linux [closed] - c++

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have a C++ project build on Visual C++ Express 2010 which includes a mysql dynamic library. I would to to convert it to a linux executable file. How may I achieve that?

"How may I achieve that?"
That totally depends on how portably your C++ code was written. If you only have dependencies to the MySQL C++ API, then chances are good, that you can install the necessary libraries on your linux system, and build your executable linking against these.

Related

No option to run a .cpp file in Visual Studio 2019 [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I am new to Visual Studio and C++. I want to run a simple C++ program to print hello world. but I don't have an option to run the file. I first used Visual Studio for Python and so there was on python workload.
Now I have installed the C++ workload that say - Desktop development or something like that. But all the options to run the file are in python.
You need to create Win32 Console Application project, add there your cpp file, then compile and run.

How to generate a C++ installer with all files embeded in it? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I generated an executable with C++ that copies files from a folder to another one,
Is there a way to include the folder that I copy inside my program instead of having it on the disk ?
I'm not using Visual C++, only DevCPP on windows and I'm targetting only windows machines.
Thanks
This is a basic option of most setup frameworks.
Free Option: NSIS
Use the example under Simply install a file to see how you can embed files into the installer, specify where to unpack them, etc.
Paid Option: InstallShield
See the Basic MSI Project Tutorial for more info

"This version of C:\TURBOC3\BIN\TCC.EXE is not compatible with the version of Windows you're running. [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I have downloaded zip file of Turbo C++ 3.2 for my windows 10 64-bit. I can not run it in cmd because it gives mentioned error. But it perfectly runs in turbo c++. I have set environment variables. what should i do?
64Bit Windows no longer supports old 16Bit DOS applications. You need to use doxbox to get the tool running or use this updated TurboC++ version, which includes DOSBox and does magic for you.

Is it possible to make an application in Visual Studio 2013 (C++) NOT requiring the VC Redistributable? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
As basic as this may sound, it seems it's actually NOT possible!
Talking about a totally "empty" application, only containing the WinMain() function and including <windows.h>. And of course, the "Use of MFC" options in the project is set to "Use Standard Windows Libraries".
Yet the application requires MSVCR120.DLL to run, as if it really uses MFC.
Looked into this similar thread, but didn't help.
Any idea?
The option can be found in the Project Properties under C/C++ -> Code Generation -> Runtime Library - set it to Multi-threaded or Multi-threaded Debug to not depend on the redistributable.

How to build this pacman project? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Hi, I want to build a PacMan game project which is on github (https://github.com/edoren/Pacman)
As i understood it needs three library naming STP, janssoon and SFML2.1 .
Can any one help me to set the required settings in in order to build and run it?
I am using win 8.1 and eclipse neon (c/C++)
please give me a step by step guide to install and setup every thing that is required (including the gcc 4.7 , SFML, STP, jansson , eclipse setting and so on.)
Why you do not use CMake like the owner of this project said?
This project was build on CMake. I think you couldn't use eclipse to do that...