Commit 535a28fa authored by jerryjacobs's avatar jerryjacobs
Browse files

See CHANGELOG.txt

parent efa9c926
Loading
Loading
Loading
Loading
+15 −0
Original line number Original line Diff line number Diff line
@@ -4,6 +4,21 @@ KiCad ChangeLog 2010
Please add newer entries at the top, list the date and your name with
Please add newer entries at the top, list the date and your name with
email address.
email address.



2010-Feb-14 UPDATE Jerry Jacobs <xor.gate.engineering[at]gmail[dot]com>
================================================================================
++ KiCad
   Check if project is noname.pro so we don't get a error if kicad is first run.
   Removed double separator in file menu.
   Moved recent project to submenu in Open recent.

++ Common
   Added CTest/CDash support file
   Moved helper tool to helper subdirectory

++ OSX
   Update compiling doc

2010-Feb-07 UPDATE Vesa Solonen <vesa.solonen@hut.fi>
2010-Feb-07 UPDATE Vesa Solonen <vesa.solonen@hut.fi>
================================================================================
================================================================================
++ all:
++ all:

CTestConfig.cmake

0 → 100644
+12 −0
Original line number Original line Diff line number Diff line
##
# KiCad CDash/CTest Support
# Run cmake, then ctest -D Experimental to push to cdash.
##
set(CTEST_PROJECT_NAME "KiCad")
set(CTEST_NIGHTLY_START_TIME "00:00:00 EST")

set(CTEST_DROP_METHOD "http")
set(CTEST_DROP_SITE "my.cdash.org")
set(CTEST_DROP_LOCATION "/submit.php?project=KiCad")
set(CTEST_DROP_SITE_CDASH TRUE)
+6 −1
Original line number Original line Diff line number Diff line
@@ -108,3 +108,8 @@ configure:18585: gcc -isysroot /Developer/SDKs/MacOSX10.5.sdk/ -mmacosx-version-
ld: warning: in /Developer/SDKs/MacOSX10.5.sdk//usr/lib/libSystem.dylib, missing required architecture ppc in file
ld: warning: in /Developer/SDKs/MacOSX10.5.sdk//usr/lib/libSystem.dylib, missing required architecture ppc in file


Installing rosetta and xcode with all architectures fixes this "problem"
Installing rosetta and xcode with all architectures fixes this "problem"


ld: warning: in /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks//QuickTime.framework/QuickTime, missing required architecture x86_64 in file

You get this error because the QuickTime 10.6 framework is not build with 64bit support. This not a real issue for KiCad because we don't use it anyway.
+13 −17
Original line number Original line Diff line number Diff line
KiCad README
KiCad README
============
============

For specific documentation like Compiling, GUI translation, Old changelogs see the
Please have a look at the other files,
Documentation subfolder.
for specific documentation like Compiling, GUI translation see the Documentation folder.


Files
Files
-----
-----
@@ -10,6 +9,7 @@ AUTHORS.txt - The authors, contributors, document writers and translators lis
CHANGELOG.txt   - This years changelog (see for previous years Documentation/changelogs)
CHANGELOG.txt   - This years changelog (see for previous years Documentation/changelogs)
CMakeList.txt   - CMAKE build tool script
CMakeList.txt   - CMAKE build tool script
COPYRIGHT.txt   - A copy of the GNU General Public License Version 2
COPYRIGHT.txt   - A copy of the GNU General Public License Version 2
CTestConfig.txt - Support for CTest and CDash testing tools
Doxyfile        - Doxygen preferences
Doxyfile        - Doxygen preferences
INSTALL.txt     - The release (binairy) installation instructions
INSTALL.txt     - The release (binairy) installation instructions
TODO.txt        - Todo list
TODO.txt        - Todo list
@@ -27,6 +27,7 @@ demos - Some demo examples
Documentation  - Misc documentation. Translating the GUI, old changelogs etcetera.
Documentation  - Misc documentation. Translating the GUI, old changelogs etcetera.
eeschema       - Sourcecode of the schematic editor
eeschema       - Sourcecode of the schematic editor
gerbview       - Sourcecode of the gerber viewer
gerbview       - Sourcecode of the gerber viewer
helpers        - Helper tools and utilities for development
include        - Interfaces to the common library
include        - Interfaces to the common library
internat       - Internationalisation files
internat       - Internationalisation files
kicad          - Sourcecode of the project manager
kicad          - Sourcecode of the project manager
@@ -38,8 +39,3 @@ scripts - Helper scripts. For building, sourcecode packaging, font settin
share          - ?
share          - ?
template       - Project template(s)
template       - Project template(s)




Loading