Hi,<br><br>so far, my night has been extremely frustrating, trying to learn CMake. However, I&#39;m slowly getting there. There are a couple of things bugging me though:<br><br><b>1) Additional Library Directories</b><br><br>
I can either have this:<br><br>    CMake: link_directories (&quot;../../YoghurtGum/bin&quot;)<br>    Output: AdditionalLibraryDirectories=&quot;..\..\YoghurtGum\bin\$(OutDir),..\..\YoghurtGum\bin&quot;<br><br>Or this:<br>
<br>    CMake: link_directories (&quot;${PROJECT_SOURCE_DIR}../../YoghurtGum/bin&quot;)<br>    Output: AdditionalLibraryDirectories=&quot;F:\Projects\YG3\Tests\Galaxians..\..\YoghurtGum\bin\$(OutDir),F:\Projects\YG3\Tests\Galaxians..\..\YoghurtGum\bin&quot;<br>
<br>Or this:<br><br>    CMake: link_directories (&quot;${PROJECT_SOURCE_DIR}/../../YoghurtGum/bin&quot;)<br>    Output: AdditionalLibraryDirectories=&quot;..\..\YoghurtGum\bin\$(OutDir),..\..\YoghurtGum\bin&quot;<br><br>While what I really want is this:<br>
<br>    Output: AdditionalLibraryDirectories=&quot;..\..\YoghurtGum\bin&quot;<br><br><b>2) Setting the platform name</b><br><br>I haven&#39;t been able to set it, but I want it to be &quot;Windows Mobile 5.0 Pocket PC SDK (ARMV4I)&quot; instead of &quot;Win32&quot;.<br>
<br><b>3) Setting the intermediate directory</b><br><br>I want to have this:<br><br>    IntermediateDirectory=&quot;intermediate&quot;<br><br>instead of this:<br><br>    IntermediateDirectory=&quot;Galaxians.dir\Release&quot;<br>
<br>but nothing seems to work.<br><br><b>4) Output file</b><br><br>It should be:<br><br>    OutputFile=&quot;$(OutDir)\$(ProjectName)_debug.exe&quot;<br><br>instead of:<br><br>    OutputFile=&quot;F:\Projects\YG3\Tests\Galaxians\bin\Debug\Galaxians.exe&quot;<br>
<br>Any help on any of these issues would be much appreciated.<br><br>Thanks in advance.<br>