Skip to content

Commit

Permalink
update build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
3ddelano committed May 10, 2023
1 parent c92f0a0 commit 5a0a01e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/idgs_core.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
#pragma once

// We don't need windows.h in this example plugin but many others do, and it can
// lead to annoying situations due to the ton of macros it defines.
// So we include it and make sure CI warns us if we use something that conflicts
// with a Windows define.
#ifdef WIN32
#include <windows.h>
#endif

#include "dgs_utils.h"
#include "idgs_activity.h"
#include "idgs_overlay.h"
Expand Down

0 comments on commit 5a0a01e

Please sign in to comment.