News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

Are Scripted Wizards without license?

Started by stahta01, October 03, 2022, 01:22:17 AM

Previous topic - Next topic

stahta01

I am using the CB Scripted wizard to create some simple projects? Do any of them have a license that is not mentioned in a source file?

Link to my git repo https://github.com/stahta01/mingw64_gcc_toolchain_test_cbprojects

I am having weird issues building MinGW64 GCC 4.8.x that are likely CRT/GCC/Binutils caused problems.
I am hoping these test project will help determine which part has the problem.

Tim S.
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

stahta01

The ones a simple search on copyright found

Copyrighted by:
  HighTec EDV-Systeme GmbH
    multiple .h, .c, .S, and .x files
  http://www.resedit.net
    resource.rc
  Free Software Foundation
    multiple Makefile.in and Makefile
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

ollydbg

#2
My guess is that the Scripted file should be in GPL, and the template source code(sample.cpp files) should be public domain.
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.