Skip to content

Commit

Permalink
Different paths for Shipping release
Browse files Browse the repository at this point in the history
Probably will eventually set up Appveyor to produce releases
  • Loading branch information
connorjak committed Oct 11, 2021
1 parent 93e73a2 commit 94fc96e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Applications/Connectatron/Connectatron.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,16 @@ using NotUUID = int;

enum Color { RED = 2, BLUE = 4, GREEN = 8 };

//#define IS_SHIPPING

#ifdef IS_SHIPPING
const fs::path DevicesPath = "Devices";
const fs::path ProjectsPath = "Projects";
#else
const fs::path DevicesPath = "../../../../Applications/Connectatron/Devices";
const fs::path ProjectsPath = "../../../../Applications/Connectatron/Projects";
#endif


static inline ImRect ImGui_GetItemRect()
{
Expand Down

0 comments on commit 94fc96e

Please sign in to comment.