Changeset 30461 for lang/cplusplus/i3

Show
Ignore:
Timestamp:
02/23/09 21:40:38 (4 years ago)
Author:
saturday06
Message:

foo

Location:
lang/cplusplus/i3/trunk
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • lang/cplusplus/i3/trunk/configure.ac

    r30458 r30461  
    22# Process this file with autoconf to produce a configure script. 
    33 
    4 AC_PREREQ(2.63) 
     4AC_PREREQ(2.61) 
    55AC_INIT([i3],[0.1],[dyob@lunaport.net]) 
    66AC_CONFIG_AUX_DIR([build-aux]) 
     
    1717if test "$enable_debug" = "yes"; then 
    1818  if test "$CFLAGS" = ""; then 
    19     CFLAGS="-g" 
     19    CFLAGS="-O0 -g" 
    2020  fi 
    2121  if test "$CXXFLAGS" = ""; then 
    22     CXXFLAGS="-g" 
     22    CXXFLAGS="-O0 -g" 
    2323  fi 
    2424fi 
  • lang/cplusplus/i3/trunk/kdevelop/i3.kdevelop

    r27680 r30461  
    2222    <general> 
    2323      <useconfiguration>default</useconfiguration> 
    24       <activetarget>mol_test_debug</activetarget> 
     24      <activetarget>i3_debug</activetarget> 
    2525    </general> 
    2626    <run> 
  • lang/cplusplus/i3/trunk/kdevelop/i3.kdevses

    r29237 r30461  
    22<!DOCTYPE KDevPrjSession> 
    33<KDevPrjSession> 
    4  <DocsAndViews NumberOfDocuments="0" /> 
     4 <DocsAndViews NumberOfDocuments="3" > 
     5  <Doc0 NumberOfViews="1" URL="file:///home/user/projects/i3/src/Main.cpp" > 
     6   <View0 Encoding="" line="37" Type="Source" /> 
     7  </Doc0> 
     8  <Doc1 NumberOfViews="1" URL="file:///home/user/projects/i3/src/mol/src/Test1.cpp" > 
     9   <View0 Encoding="" line="107" Type="Source" /> 
     10  </Doc1> 
     11  <Doc2 NumberOfViews="1" URL="file:///usr/lib/gcc/i486-linux-gnu/4.3/include/objc/objc-api.h" > 
     12   <View0 Encoding="" line="200" Type="Source" /> 
     13  </Doc2> 
     14 </DocsAndViews> 
    515 <pluginList> 
    616  <kdevdebugger> 
  • lang/cplusplus/i3/trunk/src/Main.cpp

    r30432 r30461  
    55int main(int argc, const char** argv) 
    66{ 
    7  
    87    using namespace std; 
    98    using namespace boost; 
  • lang/cplusplus/i3/trunk/src/mol/src/Test1.cpp

    r30275 r30461  
    6868int global = 0; 
    6969 
    70 struct FooModule : Module<FooModule> 
     70struct FooModule : mol::Module<FooModule> 
    7171{ 
    7272    void execute(FooEvent& e) 
     
    106106    } 
    107107}; 
    108 struct FooGuiModule : GuiModule<FooGuiModule> 
     108struct FooGuiModule : mol::GuiModule<FooGuiModule> 
    109109{ 
    110110    void createUI()