Hi, I'm really new to v8 and I'm trying to embed it in my app. I'm building from git on Windows 8.1 with VS2013.
I can build v8 successfully, but I'd like to configure the generated VS projects to match my own project settings better. The options I'm interested in are: - target architecture x64. I can pass -Dtarget_arch=x64 to gyp so this one is solved easily. - runtime library MD/MDd. Generated projects have this set to MT/MTd. For now I'm modifying 'RuntimeLibrary' in toolchain.gypi before I run gyp but I would like to avoid modifying v8 files if possible. - platform toolset, I have VS2013 and VS2015 installed and it always sets platform toolset to v140, while I would like this to be v120 for VS2013. Is there a way to specify that somewhere? Fixing it everywhere after the projects are generated is tedious - output libraries postfix i.e. I'd like the debug builds to append 'd' to library name: 'v8_based.lib' 'icui18nd.lib' and so forth. Again, I can fix the projects later but it's a lot of tinkering. Hope someone can help me. Chris -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
