Skip to content

Commit

Permalink
Stopped linking c++ stdlib statically
Browse files Browse the repository at this point in the history
Increased version
  • Loading branch information
FredyH committed Aug 26, 2019
1 parent 3355155 commit 617bb9f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions BuildProjects.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ solution "GWSockets"

if os.target() == "macosx" or os.target() == "linux" then

buildoptions { "-std=c++11 -fPIC" }
linkoptions { "-static-libstdc++ -fPIC" }
buildoptions { "-std=c++11 -fPIC -g" }
linkoptions { " -fPIC -g" }

end

Expand Down
4 changes: 2 additions & 2 deletions src/UpdateChecker.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

//I'm trying to make this as easy for anyone to adapt to their own module
//So if you want to use this, feel free
#define MODULE_VERSION "1.0.0" //The version of the current build
#define MODULE_VERSION "1.1.0" //The version of the current build
#define MODULE_VERSION_URL "https://raw.githubusercontent.com/FredyH/GWSockets/master/version.txt" //A URL to a txt file containing only the version number of the latest version
#define MODULE_NAME "GWSockets" //The name of this program
#define MODULE_RELEASE_URL "https://github.com/FredyH/GWSockets/releases" //A URL to the latest releases
Expand Down Expand Up @@ -164,4 +164,4 @@ namespace UpdateChecker
Internal::runInTimer(LUA, 5, Internal::checkVersion);
return 0;
}
}
}
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.1.0

0 comments on commit 617bb9f

Please sign in to comment.