CDP's fork of the open62541 OPC UA stack (https://github.com/open62541/open62541)

FlorianPalm eae013cf74 added .gitignore před 11 roky
autom4te.cache 5d94d089aa changed folder structure part 2 před 11 roky
bin 5d94d089aa changed folder structure part 2 před 11 roky
build-test 5d94d089aa changed folder structure part 2 před 11 roky
doc 5d94d089aa changed folder structure part 2 před 11 roky
examples 5d94d089aa changed folder structure part 2 před 11 roky
lib 5d94d089aa changed folder structure part 2 před 11 roky
m4 5d94d089aa changed folder structure part 2 před 11 roky
src 5d94d089aa changed folder structure part 2 před 11 roky
tests 5d94d089aa changed folder structure part 2 před 11 roky
.gitignore eae013cf74 added .gitignore před 11 roky
AUTHORS 5d94d089aa changed folder structure part 2 před 11 roky
COPYING 5d94d089aa changed folder structure part 2 před 11 roky
ChangeLog 5d94d089aa changed folder structure part 2 před 11 roky
INSTALL 5d94d089aa changed folder structure part 2 před 11 roky
LICENSE 9fb0847446 changed folder structure před 11 roky
Makefile 5d94d089aa changed folder structure part 2 před 11 roky
Makefile.am 5d94d089aa changed folder structure part 2 před 11 roky
Makefile.in 5d94d089aa changed folder structure part 2 před 11 roky
NEWS 5d94d089aa changed folder structure part 2 před 11 roky
README.md 52cb40ecdc Update README.md před 11 roky
aclocal.m4 5d94d089aa changed folder structure part 2 před 11 roky
autogen.sh 5d94d089aa changed folder structure part 2 před 11 roky
compile 5d94d089aa changed folder structure part 2 před 11 roky
config.guess 5d94d089aa changed folder structure part 2 před 11 roky
config.log 5d94d089aa changed folder structure part 2 před 11 roky
config.log.orig 5d94d089aa changed folder structure part 2 před 11 roky
config.status 5d94d089aa changed folder structure part 2 před 11 roky
config.status.orig 5d94d089aa changed folder structure part 2 před 11 roky
config.sub 5d94d089aa changed folder structure part 2 před 11 roky
configure 5d94d089aa changed folder structure part 2 před 11 roky
configure.ac 5d94d089aa changed folder structure part 2 před 11 roky
depcomp 5d94d089aa changed folder structure part 2 před 11 roky
install-sh 5d94d089aa changed folder structure part 2 před 11 roky
libtool 5d94d089aa changed folder structure part 2 před 11 roky
ltmain.sh 5d94d089aa changed folder structure part 2 před 11 roky
missing 5d94d089aa changed folder structure part 2 před 11 roky

README.md

Open62541

An open communication stack implementation of OPC UA.

Getting dependencies

Ubuntu

Getting gcc toolchain:
sudo apt-get install build-essential subversion git
Getting and installing check 0.9.12
$ svn checkout svn://svn.code.sf.net/p/check/code/trunk check-code
$ cd check-code
$ autoreconf --install
$ ./configure
$ make
$ sudo make install
$ sudo ldconfig

Windows

Getting MinGW and MSYS:
Get Gtk+ bundle (just for m4 marcros and pkg-config):
Get git (IMPORTANT: get 1.8.4, since 1.8.5.2 has a bug):
Getting check unit test framework:
  • Open MinGW\msys\1.0\msys.bat
$ svn checkout svn://svn.code.sf.net/p/check/code/trunk check-code
$ cd check-code
$ autoreconf --install
$ ./configure --prefix=
$ make
$ make install

Building

$ cd OPCUAServer
$ ./configure
$ make
$ make check

Rebuilding configure tools (only if configure.am is changed)

$ ./autogen.sh