Changes between Version 27 and Version 28 of CompileClient
- Timestamp:
- Nov 6, 2007, 3:22:25 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CompileClient
v27 v28 80 80 * Set up Visual Studio to use the correct platform. From the drop-down menu choose either Win32 (for 32 bit platforms) or x64 (for 64 bit platforms) and choose to make it a Release/Debug version. 81 81 * For the latest versions of Visual C++ (e.g. Visual C++ 2008 Express Edition) it may be necessary to include preprocessor macros to direct the compiler to build for the correct Windows version (this was apparently introduced for Windows Vista). E.g. in Project -> <project_name> Properties, I needed to add these entries to Configuration Properties -> C/C++ -> Preprocessor -> Preprocessor Definitions: _WIN32_WINNT=0x0501 and NTDDI_VERSION=0x05010200 -- see sdkddkver.h in the SDK include directory for macro values. 82 * Additional linker dependencies for Visual C++ Express 83 * boinc_dll 84 * advapi32.lib 85 * user32.lib 86 * boinc 87 * advapi32.lib 88 * gdi32.lib 89 * user32.lib 90 * boincmgr 91 * oleaut32.lib 82 92 * Go to the Build menu, Build Solution. 83 93