15.10.2012 - version 0.2.0 - PIIODevice - base of file, ethernet, serial and packets extractor. PIEthernet now support also TCP (client and server). PIConsole now can align labels in each column individually.

This commit is contained in:
peri4
2012-10-15 23:36:18 +04:00
parent 5558add03e
commit cfc5eed75e
64 changed files with 1879 additions and 867 deletions

View File

@@ -1,6 +1,7 @@
project(pip)
find_package(Qt4)
cmake_minimum_required(VERSION 2.6)
include_directories(${CMAKE_CURRENT_SOURCE_DIR} .)
include_directories(${CMAKE_CURRENT_SOURCE_DIR} . ${QT_INCLUDES})
file(GLOB CPPS "pi*.cpp")
if (${WIN32})
add_definitions(-Wall -O2)
@@ -17,5 +18,5 @@ add_executable(pip_test "main.cpp")
if (${WIN32})
target_link_libraries(pip_test pthread ws2_32 pip)
else (${WIN32})
target_link_libraries(pip_test pthread rt pip)
target_link_libraries(pip_test pthread rt pip ${QT_QTCORE_LIBRARY})
endif (${WIN32})