3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RxCppを使うまで

Last updated at Posted at 2015-04-11

git clone

git clone --recursive git@github.com:Reactive-Extensions/RxCpp.git

Makefile

CC :=g++
INCDIR := -I<rxcpp/RxCpp/Rx/v2/srcへのフルパス>
SOURCES :=$(wildcard *.cpp)
EXECUTABLE :=$(SOURCES:.cpp=)
 
all:$(EXECUTABLE)

$(EXECUTABLE):$(SOURCES)
	$(CC) $< $(INCDIR) -std=c++11 -pthread -o $@

clean:
	rm -rf $(EXECUTABLE)

RxCpp/Rx/v2/examples/println/main.cpp を実行する

$ make
$ ./main
===== println stream of std::string =====
Hello, Matthew!
...
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?