Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Game Library
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Onuralp SEZER
Game Library
Commits
a3590f0f
Commit
a3590f0f
authored
2 years ago
by
Joseph Walton-Rivers
Browse files
Options
Downloads
Patches
Plain Diff
add new lines to gitingore
parent
bfa63006
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+5
-6
5 additions, 6 deletions
.gitignore
CMakeLists.txt
+13
-6
13 additions, 6 deletions
CMakeLists.txt
with
18 additions
and
12 deletions
.gitignore
+
5
−
6
View file @
a3590f0f
build
/
#
build
files
builds/
cmake-build-debug/
cmake-build-debug-coverage/
cmake-build-debug-coverage-event-trace/
cmake-build-*
imgui.ini
.flatpak-builder/
compile_commands.json
# dotfiles
# dotfiles
(IDE)
.idea/
.cache/
.venv/
# windows v
s
stu
ff
# windows v
isual
stu
dio
.vs/
CMakePresets.json
CMakeSettings.json
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
13
−
6
View file @
a3590f0f
...
...
@@ -4,6 +4,9 @@ set(namespace "fggl")
set
(
CMAKE_CXX_STANDARD 20
)
option
(
FGGL_CONAN
"Should we use conan to find missing dependencies?"
OFF
)
option
(
FGGL_EXAMPLES
"Should we build examples or just the library"
ON
)
option
(
FGGL_DOCS
"Should we build documentation?"
ON
)
set
(
CONAN_BUILD_TYPE
"Debug"
)
# Define the project
...
...
@@ -22,11 +25,13 @@ if (CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
include
(
CTest
)
# Documentation support
find_package
(
Doxygen
)
if
(
Doxygen_FOUND
)
add_subdirectory
(
docs
)
else
()
message
(
STATUS
"Doxygen not found, not building docs"
)
if
(
FGGL_DOCS
)
find_package
(
Doxygen
)
if
(
Doxygen_FOUND
)
add_subdirectory
(
docs
)
else
()
message
(
STATUS
"Doxygen not found, not building docs"
)
endif
()
endif
()
endif
()
...
...
@@ -54,7 +59,9 @@ target_compile_options( ${PROJECT_NAME} PRIVATE -Wall -fno-strict-aliasing -fno-
# extras
#add_subdirectory(tests)
add_subdirectory
(
demo
)
if
(
FGGL_EXAMPLES
)
add_subdirectory
(
demo
)
endif
()
##
# INSTALL PHASE
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment