- Fix minizip build.
- Fix eeschema/plugins build.
- Update TODO.
This commit is contained in:
f3nix 2007-11-09 21:45:26 +00:00
parent f79acc0ef7
commit efe7edf2f1
6 changed files with 27 additions and 21 deletions

View File

@ -1,8 +1,8 @@
TODO:
* Fix kicad/minizip.
* Fix eeschema/plugins.
* Add install targets for binaries, docs, translations, libraries (Windows, Mac).
Linux version has a preliminary support.
* Add DEBUG target.
* Add DEBUG.
* Add PYTHON.
* Add shared/static.
* Testing under Windows and Mac.
* More testing ...

View File

@ -122,4 +122,4 @@ TARGET_LINK_LIBRARIES(eeschema common ${wxWidgets_LIBRARIES})
INSTALL(TARGETS eeschema RUNTIME DESTINATION ${KICAD_BIN})
#ADD_SUBDIRECTORY(plugins)
ADD_SUBDIRECTORY(plugins)

View File

@ -1,8 +1,7 @@
INCLUDE(CheckFunctionExists)
CHECK_FUNCTION_EXISTS(stricmp HAVE_STRICMP)
IF(UNIX)
ADD_DEFINITIONS(-D__UNIX__)
ENDIF(UNIX)
IF(HAVE_STRICMP)
ADD_EXECUTABLE(netlist_form_pads-pcb netlist_form_pads-pcb.cpp)
INSTALL(TARGETS netlist_form_pads-pcb RUNTIME DESTINATION ${KICAD_PLUGINS})
ENDIF(HAVE_STRICMP)

View File

@ -29,4 +29,4 @@ TARGET_LINK_LIBRARIES(kicad common ${wxWidgets_LIBRARIES})
INSTALL(TARGETS kicad RUNTIME DESTINATION ${KICAD_BIN})
#ADD_SUBDIRECTORY(minizip)
ADD_SUBDIRECTORY(minizip)

View File

@ -1,6 +1,8 @@
# TODO:
# * Add include for wxzlib
FIND_PACKAGE(ZLIB)
MESSAGE("-- Check for installed ZLIB:")
IF(ZLIB_FOUND)
MESSAGE(" ZLIB found")
SET(MINIZIP_SRCS
ioapi.c
minizip.c
@ -8,4 +10,9 @@ SET(MINIZIP_SRCS
ADD_EXECUTABLE(minizip ${MINIZIP_SRCS} )
TARGET_LINK_LIBRARIES(minizip ${ZLIB_LIBRARIES})
INSTALL(TARGETS minizip RUNTIME DESTINATION bin)
ELSE(ZLIB_FOUND)
MESSAGE(" ZLIB not found")
ENDIF(ZLIB_FOUND)