Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xs-test
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Patrick Chen
xs-test
Commits
cffcffec
Commit
cffcffec
authored
Aug 27, 2018
by
Patrick Chen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init repo
parents
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
+31
-0
Makefile
Makefile
+23
-0
xs-test.cpp
src/xs-test.cpp
+8
-0
No files found.
Makefile
0 → 100644
View file @
cffcffec
CXX
=
g++
CXX_FLAGS
=
-g
-std
=
c++14
\
-I
/usr/local/include
\
-I
./include
LD_FLAGS
=
-L
/usr/local/lib
\
-lexchange_server
BUILD_DIR
=
$(
shell
pwd
)
/build
XSTEST_SRCS
=
src/xs-test.cpp
XSTEST_OBJS
=
$
(
addprefix
$(BUILD_DIR)
/,
$
(
XSTEST_SRCS:.cpp
=
.o
))
all
:
$(BUILD_DIR)/xs-test
$(BUILD_DIR)/xs-test
:
$(XSTEST_OBJS)
$(CXX)
-o
$@
$(LD_FLAGS)
$(XSTEST_OBJS)
$(BUILD_DIR)/%.o
:
%.cpp
mkdir
-p
$
(
dir
$@
)
$(CXX)
-o
$@
-c
$(CXX_FLAGS)
$<
clean
:
rm
-rf
$(BUILD_DIR)
/xs-test
rm
-rf
$(XSTEST_OBJS)
src/xs-test.cpp
0 → 100644
View file @
cffcffec
#include <iostream>
#include "Config.hpp"
int
main
()
{
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment