Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Initial Version and Version 1 of Ticket #361


Ignore:
Timestamp:
Nov 3, 2010, 8:37:21 PM (13 years ago)
Author:
youngk
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #361 – Description

    initial v1  
    11Cmake does not copy the source files to the build/src folder for the Xcode build configuration. This happens in all targets.
    22
    3 What CMAKE does: It copies *some* of the source files to their respective destination targets, but not all. Additionally, it copies them to the wrong folder. E.g.: it copies to "trunk/build/src/external/ceguilua" instead of "trunk/build/src/external/ceguilua/Debug".
     3*EDIT*
     4Cmake does not copy the following files:
    45
    5 Xcode requires certain or all (I'm not quite sure) source files to be located in a subdirectory of each target that is named after the current build configuration.
     6src/toluabind/:
     7  ToluaBindCore.h,
     8  *Network.h,
     9  *Notifications.h,
     10  *Orxonox.h,
     11  *Pickup.h,
     12  *Questsystem.h
     13src/external/ceguilua/:
     14  lua_CEGUI.cpp
     15src/libraries/core/:
     16  ToluaBindCore.cc
     17src/libraries/network/:
     18  ToluaBindNetwork.cc
     19src/orxonox/:
     20  ToluaBindOrxonox.cc
     21src/modules/pickup/:
     22  ToluaBindPickup.cc
     23src/modules/notifications/:
     24  ToluaBindNotifications.cc
     25src/modules/questsystem/:
     26  ToluaBindQuestsystem.cc
     27
     28Xcode requires certain source files to be located in a subdirectory of each target that is named after the current build configuration.