Changeset 2265
- Timestamp:
- Jan 23, 2013, 7:29:28 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 1 added
- 1 deleted
- 4 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Makefile.am
r2257 r2265 16 16 platform.cpp platform.h sprite.cpp sprite.h camera.cpp camera.h \ 17 17 \ 18 lol/base/ types.h lol/base/array.h lol/base/string.h lol/base/hash.h \19 lol/base/ map.h \18 lol/base/log.h lol/base/array.h lol/base/types.h lol/base/array.h \ 19 lol/base/string.h lol/base/hash.h lol/base/map.h \ 20 20 lol/math/vector.h lol/math/half.h lol/math/real.h lol/math/remez.h \ 21 21 lol/math/math.h lol/math/geometry.h \ 22 lol/sys/init.h lol/sys/ log.h lol/sys/thread.h lol/sys/timer.h \22 lol/sys/init.h lol/sys/thread.h lol/sys/timer.h \ 23 23 lol/image/color.h \ 24 lol/unit.h lol/debug.h\24 lol/unit.h \ 25 25 \ 26 26 generated/location.hh generated/position.hh generated/stack.hh \ … … 43 43 $(android_sources) \ 44 44 \ 45 base/hash.cpp base/ string.cpp \45 base/hash.cpp base/log.cpp base/string.cpp \ 46 46 \ 47 47 math/vector.cpp math/real.cpp math/half.cpp math/trig.cpp \ … … 70 70 mesh/mesh.cpp mesh/mesh.h \ 71 71 \ 72 sys/init.cpp sys/ log.cpp sys/timer.cpp \72 sys/init.cpp sys/timer.cpp \ 73 73 sys/threadbase.h \ 74 74 \ -
trunk/src/core.h
r2257 r2265 75 75 76 76 // Base types 77 #include <lol/debug.h>78 79 77 #include <lol/base/types.h> 78 #include <lol/base/log.h> 79 #include <lol/base/assert.h> 80 80 #include <lol/base/array.h> 81 81 #include <lol/base/string.h> … … 90 90 91 91 #include <lol/sys/init.h> 92 #include <lol/sys/log.h>93 92 #include <lol/sys/thread.h> 94 93 #include <lol/sys/timer.h> -
trunk/src/lol/base/log.h
r2264 r2265 15 15 // 16 16 17 #if !defined __LOL_ SYS_LOG_H__18 #define __LOL_ SYS_LOG_H__17 #if !defined __LOL_BASE_LOG_H__ 18 #define __LOL_BASE_LOG_H__ 19 19 20 20 #include <stdint.h> … … 52 52 } /* namespace lol */ 53 53 54 #endif // __LOL_ SYS_LOG_H__54 #endif // __LOL_BASE_LOG_H__ 55 55 -
trunk/src/lolcore.vcxproj
r2258 r2265 236 236 <ClCompile Include="camera.cpp" /> 237 237 <ClCompile Include="base\hash.cpp" /> 238 <ClCompile Include="base\log.cpp" /> 238 239 <ClCompile Include="base\string.cpp" /> 239 240 <ClCompile Include="debug\fps.cpp" /> … … 294 295 <ClCompile Include="sprite.cpp" /> 295 296 <ClCompile Include="sys\init.cpp" /> 296 <ClCompile Include="sys\log.cpp" />297 297 <ClCompile Include="sys\timer.cpp" /> 298 298 <ClCompile Include="text.cpp" /> … … 587 587 <ClInclude Include="lolgl.h" /> 588 588 <ClInclude Include="lol\base\array.h" /> 589 <ClInclude Include="lol\base\assert.h" /> 589 590 <ClInclude Include="lol\base\hash.h" /> 591 <ClInclude Include="lol\base\log.h" /> 590 592 <ClInclude Include="lol\base\map.h" /> 591 593 <ClInclude Include="lol\base\string.h" /> 592 594 <ClInclude Include="lol\base\types.h" /> 593 <ClInclude Include="lol\debug.h" />594 595 <ClInclude Include="lol\image\color.h" /> 595 596 <ClInclude Include="lol\math\geometry.h" /> … … 600 601 <ClInclude Include="lol\math\vector.h" /> 601 602 <ClInclude Include="lol\sys\init.h" /> 602 <ClInclude Include="lol\sys\log.h" />603 603 <ClInclude Include="lol\sys\thread.h" /> 604 604 <ClInclude Include="lol\sys\timer.h" /> -
trunk/src/lolcore.vcxproj.filters
r2257 r2265 732 732 <Filter>gpu</Filter> 733 733 </ClInclude> 734 <ClInclude Include="lol\debug.h">735 <Filter>lol</Filter>736 </ClInclude>737 734 <ClInclude Include="input\input.h"> 738 735 <Filter>input</Filter> … … 1612 1609 </ClInclude> 1613 1610 <ClInclude Include="lol\base\array.h"> 1611 <Filter>lol\base</Filter> 1612 </ClInclude> 1613 <ClInclude Include="lol\base\assert.h"> 1614 1614 <Filter>lol\base</Filter> 1615 1615 </ClInclude>
Note: See TracChangeset
for help on using the changeset viewer.