mirror of
https://github.com/ModOrganizer2/modorganizer-plugin_python.git
synced 2026-07-27 14:03:33 -07:00
12 lines
365 B
Plaintext
12 lines
365 B
Plaintext
#include "resource.h"
|
|
|
|
#ifdef SCONS_VARIANT
|
|
IDR_LOADER_DLL BINARY MOVEABLE PURE SCONS_VARIANT
|
|
#else
|
|
#ifdef _DEBUG
|
|
IDR_LOADER_DLL BINARY MOVEABLE PURE "..\\..\\pythonRunner\\debug\\pythonRunner.dll"
|
|
#else // _DEBUG
|
|
IDR_LOADER_DLL BINARY MOVEABLE PURE "..\\..\\pythonRunner\\release\\pythonRunner.dll"
|
|
#endif // _DEBUG
|
|
#endif
|