Skip to content

Commit

Permalink
lvg 201
Browse files Browse the repository at this point in the history
  • Loading branch information
inanevin committed May 2, 2024
1 parent 86767f6 commit 7cee678
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ include/Utility/stb_image.h
#--------------------------------------------------------------------

if(WIN32)
add_executable(${PROJECT_NAME} WIN32 ${EXAMPLE_SOURCES} ${EXAMPLE_HEADERS})
add_executable(${PROJECT_NAME} ${EXAMPLE_SOURCES} ${EXAMPLE_HEADERS})
else()
add_executable(${PROJECT_NAME} MACOSX_BUNDLE ${EXAMPLE_SOURCES} ${EXAMPLE_HEADERS})
endif()
Expand Down
2 changes: 0 additions & 2 deletions Example/include/Main.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ OF THE POSSIBILITY OF SUCH DAMAGE.

namespace LinaVG
{
class Drawer;

namespace Examples
{
class GLBackend;
Expand Down
4 changes: 2 additions & 2 deletions Example/src/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "Main.hpp"
#include <iostream>
#include <chrono>
#include "Backends/GLFWWindow.hpp"
#include "Backends/GL/GLBackend.hpp"
#include <iostream>
#include <chrono>
#include <chrono>

int main(int argc, char* argv[])
Expand Down

0 comments on commit 7cee678

Please sign in to comment.