Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for qOverload and git ignore a bunch of intermediates #26

Merged
merged 2 commits into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
*CMakeLists.txt.user
_build/
*.DS_Store
o2.pro.user
o2.pro.user

# Intermediates
.qmake.stash
Makefile
*.o
moc_*
# Include linux and Mac libs
libo2.*
2 changes: 1 addition & 1 deletion o2.pro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ TEMPLATE = lib
DEFINES += O2_SHARED_LIB
DEFINES += O2_DLL_EXPORT

CONFIG += c++11
CONFIG += c++14

# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
Expand Down
Loading