Hi,<br><br>so far, my night has been extremely frustrating, trying to learn CMake. However, I'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 ("../../YoghurtGum/bin")<br> Output: AdditionalLibraryDirectories="..\..\YoghurtGum\bin\$(OutDir),..\..\YoghurtGum\bin"<br><br>Or this:<br>
<br> CMake: link_directories ("${PROJECT_SOURCE_DIR}../../YoghurtGum/bin")<br> Output: AdditionalLibraryDirectories="F:\Projects\YG3\Tests\Galaxians..\..\YoghurtGum\bin\$(OutDir),F:\Projects\YG3\Tests\Galaxians..\..\YoghurtGum\bin"<br>
<br>Or this:<br><br> CMake: link_directories ("${PROJECT_SOURCE_DIR}/../../YoghurtGum/bin")<br> Output: AdditionalLibraryDirectories="..\..\YoghurtGum\bin\$(OutDir),..\..\YoghurtGum\bin"<br><br>While what I really want is this:<br>
<br> Output: AdditionalLibraryDirectories="..\..\YoghurtGum\bin"<br><br><b>2) Setting the platform name</b><br><br>I haven't been able to set it, but I want it to be "Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" instead of "Win32".<br>
<br><b>3) Setting the intermediate directory</b><br><br>I want to have this:<br><br> IntermediateDirectory="intermediate"<br><br>instead of this:<br><br> IntermediateDirectory="Galaxians.dir\Release"<br>
<br>but nothing seems to work.<br><br><b>4) Output file</b><br><br>It should be:<br><br> OutputFile="$(OutDir)\$(ProjectName)_debug.exe"<br><br>instead of:<br><br> OutputFile="F:\Projects\YG3\Tests\Galaxians\bin\Debug\Galaxians.exe"<br>
<br>Any help on any of these issues would be much appreciated.<br><br>Thanks in advance.<br>