-
Notifications
You must be signed in to change notification settings - Fork 21
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
Now compiles on Windows w/ MINGW 4.8 #3
base: devel
Are you sure you want to change the base?
Conversation
@@ -4,7 +4,7 @@ set(EXECNAME pAntler) | |||
find_package(MOOS 10) | |||
|
|||
#what files are needed? | |||
SET(SRCS AntlerMain.cpp Antler.cpp) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for the pull request! You saved me duplicating half the effort (half, until I realized someone else already did it!).
Just a comment: on this CMakeLists.txt file, I would rather add conditionally to be in WIN32, just in case it breaks UNIXes builds which seem to work as is...
IF (WIN32)
SET(SRCS ${SRCS} XPCProcess.cpp XPCProcessAttrib.cpp)
ENDIF(WIN32)
Update to latest devel version from official repo
…s ago. + flags for less warnings for CI.
No description provided.