<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic &amp;gt;&amp;gt;...GUI integration isn't in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-integrate-Intel-Composer-XE-2011-with-Visual-Studio-2012/m-p/920871#M12966</link>
    <description>&amp;gt;&amp;gt;...GUI integration isn't supported for this combination...

That is correct and as Tim mentioned command line integration works ( see my previous post ).</description>
    <pubDate>Sat, 06 Apr 2013 00:49:30 GMT</pubDate>
    <dc:creator>SergeyKostrov</dc:creator>
    <dc:date>2013-04-06T00:49:30Z</dc:date>
    <item>
      <title>How to integrate Intel Composer XE 2011 with Visual Studio 2012</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-integrate-Intel-Composer-XE-2011-with-Visual-Studio-2012/m-p/920868#M12963</link>
      <description>&lt;P&gt;My company currently uses VS 2012 but only has licenses for Intel Composer 2011. How can I set up the integration between the Composer and VS so that I can use Intel compiler for C++ project?&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;P/S: this is not a MKL question but for some reason, I cannot post in other more appropriate forums.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2013 20:28:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-integrate-Intel-Composer-XE-2011-with-Visual-Studio-2012/m-p/920868#M12963</guid>
      <dc:creator>zer0nes</dc:creator>
      <dc:date>2013-04-04T20:28:31Z</dc:date>
    </item>
    <item>
      <title>GUI integration isn't</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-integrate-Intel-Composer-XE-2011-with-Visual-Studio-2012/m-p/920869#M12964</link>
      <description>&lt;P&gt;GUI integration isn't supported for this combination. Composer XE 2013 is needed for integration in VS2012.&amp;nbsp; 2011 should work for command line compilation, if you set up the option /Qlocation,link to point to the folder where link.exe is.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2013 20:49:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-integrate-Intel-Composer-XE-2011-with-Visual-Studio-2012/m-p/920869#M12964</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2013-04-04T20:49:53Z</dc:date>
    </item>
    <item>
      <title>A manual integration could be</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-integrate-Intel-Composer-XE-2011-with-Visual-Studio-2012/m-p/920870#M12965</link>
      <description>A manual integration could be easily done using a VS &lt;STRONG&gt;Makefile&lt;/STRONG&gt; project(s). I used that technique to integrate several C/C++ compilers ( including legacy ones ) with VS 2005 and VS 2008 Professional Editions.

&lt;STRONG&gt;Note:&lt;/STRONG&gt; Only compilation &amp;amp; linking / no debugging / for debugging use MS C++ compiler

This is how &lt;STRONG&gt;Output&lt;/STRONG&gt; looks like when &lt;STRONG&gt;5&lt;/STRONG&gt; ptojects selected in &lt;STRONG&gt;Batch Build&lt;/STRONG&gt;:
...
------ Build started: Project: &lt;STRONG&gt;TccTestApp&lt;/STRONG&gt;, Configuration: Debug Win32 ------
Performing Makefile project actions
Could Not Find ..\TccTestApp\Debug\*.lib
Could Not Find ..\TccTestApp\Lib\*.obj
...
&lt;STRONG&gt;Turbo C++ Version 3.00&lt;/STRONG&gt; Copyright (c) 1992 Borland International
tcctes~1.cpp:
        Available memory 3378828
TLIB 3.02 Copyright (c) 1991 Borland International
TccTestApp - 0 error(s), 0 warning(s)

------ Build started: Project: &lt;STRONG&gt;MscTestApp&lt;/STRONG&gt;, Configuration: Debug Win32 ------ &lt;STRONG&gt;Note:&lt;/STRONG&gt; Microsoft C++ compiler
Compiling...
Stdphf.cpp
...
Compiling...
MscTestApp.cpp
Compiling manifest to resources...
Linking...
   Creating library Debug/MscTestAppD.lib and object Debug/MscTestAppD.exp
Embedding manifest...
MscTestApp - 0 error(s), 0 warning(s)

------ Build started: Project: &lt;STRONG&gt;BccTestApp&lt;/STRONG&gt;, Configuration: Debug Win32 ------
Performing Makefile project actions
&lt;STRONG&gt;Borland C++ 5.5.1&lt;/STRONG&gt; for Win32 Copyright (c) 1993, 2000 Borland
BccTestApp.cpp:
...
Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland
BccTestApp - 0 error(s), 0 warning(s)

------ Build started: Project: &lt;STRONG&gt;IccTestApp&lt;/STRONG&gt;, Configuration: Debug Win32 ------
Compiling with &lt;STRONG&gt;Intel(R) C++ Compiler XE 12.1.7.371&lt;/STRONG&gt; [IA-32]... (Intel C++ Environment)
Stdphf.cpp
...
IccTestApp.cpp
Compiling manifest to resources... (Microsoft VC++ Environment)
Linking... (Intel C++ Environment)
xilink: executing 'link'
   Creating library C:\WorkEnv\AppsWorkDev\AppsTst\IccTestApp\Debug\IccTestAppD.lib and object C:\WorkEnv\AppsWorkDev\AppsTst\IccTestApp\Debug\IccTestAppD.exp
Embedding manifest... (Microsoft VC++ Environment)
IccTestApp - 0 error(s), 0 warning(s), 0 remark(s)

------ Build started: Project: &lt;STRONG&gt;MgwTestApp&lt;/STRONG&gt;, Configuration: Debug Win32 ------ &lt;STRONG&gt;Note:&lt;/STRONG&gt; MinGW C++ compiler
Performing Makefile project actions
...
MgwTestApp - 0 error(s), 0 warning(s)

========== Build: 5 succeeded, 0 failed, 1 up-to-date, 0 skipped ==========</description>
      <pubDate>Sat, 06 Apr 2013 00:43:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-integrate-Intel-Composer-XE-2011-with-Visual-Studio-2012/m-p/920870#M12965</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-04-06T00:43:00Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...GUI integration isn't</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-integrate-Intel-Composer-XE-2011-with-Visual-Studio-2012/m-p/920871#M12966</link>
      <description>&amp;gt;&amp;gt;...GUI integration isn't supported for this combination...

That is correct and as Tim mentioned command line integration works ( see my previous post ).</description>
      <pubDate>Sat, 06 Apr 2013 00:49:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-integrate-Intel-Composer-XE-2011-with-Visual-Studio-2012/m-p/920871#M12966</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-04-06T00:49:30Z</dc:date>
    </item>
  </channel>
</rss>

