Skip to content

Commit

Permalink
release 1.0.0
Browse files Browse the repository at this point in the history
commit 57a7504
Author: Aleksey Timin <atimin@gmail.com>
Date:   Sun Dec 8 15:04:58 2019 +0500

    fix test compilation

commit 9885ea0
Author: Aleksey Timin <atimin@gmail.com>
Date:   Sun Dec 8 14:59:16 2019 +0500

    change distr

commit ecc0367
Author: Aleksey Timin <atimin@gmail.com>
Date:   Sun Dec 8 14:55:13 2019 +0500

    fix compilation

commit 07643cc
Author: Aleksey Timin <atimin@gmail.com>
Date:   Sun Dec 8 14:53:08 2019 +0500

    no osx

commit 5000adc
Author: Aleksey Timin <atimin@gmail.com>
Date:   Sun Dec 8 14:27:59 2019 +0500

    fix test command

commit 3209102
Author: Aleksey Timin <atimin@gmail.com>
Date:   Sun Dec 8 14:03:07 2019 +0500

    fix gtest installation

commit fee5b59
Author: Aleksey Timin <atimin@gmail.com>
Date:   Sun Dec 8 14:01:17 2019 +0500

    install gtest in travis

commit e09a51c
Author: Aleksey Timin <atimin@gmail.com>
Date:   Sun Dec 8 13:54:37 2019 +0500

    add travis
  • Loading branch information
atimin committed Dec 8, 2019
1 parent 88a83e2 commit 3f3388f
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
language: cpp
sudo: required
dist: bionic
compiler:
- clang
- gcc
os:
- linux

install:
- cd ~
- git clone https://github.com/google/googletest.git gtest
- cd gtest
- git checkout release-1.8.1
- cmake .
- make install DESTDIR=~/.local -j

script:
- cd ~/build/flipback/EIPScanner/
- cmake -DTEST_ENABLED=ON -DEXAMPLE_ENABLED=ON -DGTEST_ROOT=/home/travis/.local/usr/local/ -DGMOCK_ROOT=/home/travis/.local/usr/local/ .
- cmake --build .
- test/test_eipscanner
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Release 1.0.0 (2019-12-08)

Initial release

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Free implementation of Ethernet/IP scanner in C++
* File Object (only upload)
* Parameter Object

[![Build Status](https://travis-ci.com/flipback/EIPScanner.svg?branch=master)](https://travis-ci.com/flipback/EIPScanner)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/flipback/EIPScanner)

## Requirements

* CMake 3.5 and higher
Expand Down
1 change: 1 addition & 0 deletions src/fileObject/FileObjectState.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#ifndef EIPSCANNER_FILEOBJECT_FILEOBJECTSTATE_H
#define EIPSCANNER_FILEOBJECT_FILEOBJECTSTATE_H

#include <memory>
#include "SessionInfo.h"
#include "MessageRouter.h"
#include "FileObject.h"
Expand Down
4 changes: 4 additions & 0 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ add_executable(test_eipscanner
)
message(STATUS ${GTEST_BOTH_LIBRARIES})
message(STATUS ${GMOCK_BOTH_LIBRARIES})

include_directories(${GTEST_INCLUDE_DIRS})
include_directories(${GMOCK_INCLUDE_DIRS})

target_link_libraries(test_eipscanner
${GTEST_BOTH_LIBRARIES}
${GMOCK_BOTH_LIBRARIES}
Expand Down

0 comments on commit 3f3388f

Please sign in to comment.