Advertisement
Guest User

Untitled

a guest
May 1st, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.18 KB | None | 0 0
  1. CC = g++
  2. CFLAGS = -std=c++11 -g -Og -Wall -Werror -pedantic
  3.  
  4. all: main.o
  5.     g++ -o ps7 main.o $(CFLAGS) -lboost_regex -lboost_date_time
  6.  
  7. main.o: main.cpp
  8.     g++ -c main.cpp $(CFLAGS)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement