-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
How to migrate TPack to VS 2022
- Add the GenesisSDK include files in the project folder which include common headers and .lib
- Set
.\GenesisSDK\includein C/C++ -> General -> Additional Include Directories
- Set
- I mistakenly made the app as a Console application (That's what I want to migrate). It's a WinMain application.
- To sort this out, set to
/SUBSYSTEM:WINDOWSin Linker -> System.
- To sort this out, set to
- Set Multi-Byte character set in Configuration properties -> Advanced -> Character set.
- Set
ComCtl32.libin Linker -> Input -> Additional dependencies. - Added Genesis libraries easily with pragmas
#ifdef _DEBUG
#pragma comment (lib, "./GenesisSDK/lib/genesisd.lib")
#else
#pragma comment (lib, "./GenesisSDK/lib/genesis.lib")
#endifMetadata
Metadata
Assignees
Labels
No labels