Initial commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
add_library(Stun STATIC)
|
||||
|
||||
target_sources(Stun
|
||||
PRIVATE
|
||||
stun.cxx
|
||||
PUBLIC
|
||||
FILE_SET HEADERS
|
||||
BASE_DIRS include
|
||||
FILES include/stun/stun.hxx
|
||||
)
|
||||
@@ -0,0 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
namespace stun {
|
||||
|
||||
int add_numbers(int, int);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
#include <stun/stun.hxx>
|
||||
|
||||
int stun::add_numbers(int x, int y) { return (x + y); }
|
||||
Reference in New Issue
Block a user