Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
NetWorld
Project
Project
Details
Activity
Releases
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
Fatus
NetWorld
Commits
38409f22
Commit
38409f22
authored
Oct 12, 2020
by
guillaume
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stdio.h
parent
903f9d60
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
4 deletions
+11
-4
CMakeLists.txt
CMakeLists.txt
+5
-2
install-ubuntu
bin/install-ubuntu
+4
-1
main-viewer.c
src/main-viewer.c
+1
-0
networld.h
src/networld.h
+1
-1
No files found.
CMakeLists.txt
View file @
38409f22
...
...
@@ -2,7 +2,10 @@ project(networld LANGUAGES C)
cmake_minimum_required
(
VERSION 3.10
)
# Activate C99 standard:
SET
(
CMAKE_C_FLAGS
"-std=c99 -Wall -Wextra"
)
SET
(
CMAKE_C_COMPILER
"gcc"
)
SET
(
CMAKE_C_FLAGS
"-std=c99"
)
set
(
CMAKE_CXX_FLAGS_DEBUG_INIT
"-Wall -Wextra"
)
set
(
CMAKE_CXX_FLAGS_RELEASE_INIT
"-Wall"
)
# project configuration :
include_directories
(
${
PROJECT_SOURCE_DIR
}
${
PROJECT_SOURCE_DIR
}
/src
)
...
...
@@ -11,7 +14,7 @@ include_directories(${PROJECT_SOURCE_DIR} ${PROJECT_SOURCE_DIR}/src)
find_package
(
raylib 3.0 REQUIRED
)
#set(raylib_VERBOSE 1)
add_executable
(
nw-hello src/hello.c
)
add_executable
(
nw-hello src/
main-
hello.c
)
target_link_libraries
(
nw-hello raylib
)
add_executable
(
nw-viewer src/main-viewer.c src/networld.c
)
...
...
bin/install-ubuntu
100644 → 100755
View file @
38409f22
...
...
@@ -15,4 +15,7 @@ mkdir build && cd build
cmake
-DSHARED
=
ON
-DSTATIC
=
ON ..
make
sudo
make
install
cd
..
\ No newline at end of file
cd
..
# NetWorld:
bin/build
\ No newline at end of file
src/main-viewer.c
View file @
38409f22
...
...
@@ -8,6 +8,7 @@
#include "networld.h"
#include "raylib.h"
#include <stdlib.h>
#include <stdio.h>
// Program attributes
//-------------------
...
...
src/networld.h
View file @
38409f22
...
...
@@ -14,7 +14,7 @@ typedef struct Str_NetWorld NetWorld;
// Constructor / Destructor
NetWorld
*
NetWorld_new
(
int
aSize
);
void
NetWorld_delete
(
NetWorld
*
aWorld
);
void
NetWorld_delete
(
NetWorld
*
self
);
// Initialization
void
NetWorld_initNodePosition
(
NetWorld
*
self
,
int
iNode
,
double
x
,
double
y
);
// position must be an float[size][2] array...
...
...
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