Author Topic: cctest unix project  (Read 4352 times)

Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3353
cctest unix project
« on: February 17, 2014, 02:16:41 pm »
the cctest project for unix has to be updated.

Code
 	@@ -45,7 +45,6 @@
45 45 <Add library="codeblocks" />
46 46 <Add directory="../../devel" />
47 47 </Linker>
48 - <Unit filename="cctest/cctest.cpp" />
49 48 <Unit filename="cctest/cctest.h" />
50 49 <Unit filename="cctest/cctest_app.cpp" />
51 50 <Unit filename="cctest/cctest_frame.cpp" />

greetings

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: cctest unix project
« Reply #1 on: February 17, 2014, 02:32:25 pm »
Done in SVN, thanks!
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5913
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: cctest unix project
« Reply #2 on: February 17, 2014, 02:40:04 pm »
the cctest project for unix has to be updated.

Code
 	@@ -45,7 +45,6 @@
45 45 <Add library="codeblocks" />
46 46 <Add directory="../../devel" />
47 47 </Linker>
48 - <Unit filename="cctest/cctest.cpp" />
49 48 <Unit filename="cctest/cctest.h" />
50 49 <Unit filename="cctest/cctest_app.cpp" />
51 50 <Unit filename="cctest/cctest_frame.cpp" />

greetings
I don't have a Linux system to test those change.
So, a unified format patch is welcome.

Mainly similar to this change: diff file

Thanks.

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5913
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: cctest unix project
« Reply #3 on: February 17, 2014, 02:41:02 pm »
Done in SVN, thanks!
Thanks, you are quick!
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.