Changes between Initial Version and Version 1 of Ticket #361
- Timestamp:
- Nov 3, 2010, 8:37:21 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #361 – Description
initial v1 1 1 Cmake does not copy the source files to the build/src folder for the Xcode build configuration. This happens in all targets. 2 2 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* 4 Cmake does not copy the following files: 4 5 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. 6 src/toluabind/: 7 ToluaBindCore.h, 8 *Network.h, 9 *Notifications.h, 10 *Orxonox.h, 11 *Pickup.h, 12 *Questsystem.h 13 src/external/ceguilua/: 14 lua_CEGUI.cpp 15 src/libraries/core/: 16 ToluaBindCore.cc 17 src/libraries/network/: 18 ToluaBindNetwork.cc 19 src/orxonox/: 20 ToluaBindOrxonox.cc 21 src/modules/pickup/: 22 ToluaBindPickup.cc 23 src/modules/notifications/: 24 ToluaBindNotifications.cc 25 src/modules/questsystem/: 26 ToluaBindQuestsystem.cc 27 28 Xcode requires certain source files to be located in a subdirectory of each target that is named after the current build configuration.