Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
lostjared authored Sep 19, 2024
1 parent 117e318 commit 06201f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion system/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ find_package(ZLIB REQUIRED)
find_package(PNG REQUIRED)
include_directories(${SDL2_INCLUDE_DIRS} ${SDL2_TTF_INCLUDE_DIRS} /usr/include /usr/local/include /usr/local/include/SDL2 ${ZLIB_INCLUDE_DIRS} ${PNG_INCLUDE_DIRS})
link_directories(/usr/lib /usr/local/lib)
add_executable(MasterX src/main.cpp src/window.cpp src/splash.cpp src/dimension.cpp src/terminal.cpp src/mx_controls.cpp src/mx_window.cpp src/mx_system_bar.cpp src/mx_event.cpp src/loadpng.cpp src/masterpiece.cpp src/cfg.cpp)
add_executable(MasterX src/main.cpp src/window.cpp src/splash.cpp src/dimension.cpp src/terminal.cpp src/mx_controls.cpp src/mx_window.cpp src/mx_system_bar.cpp src/mx_event.cpp src/loadpng.cpp src/masterpiece.cpp src/cfg.cpp src/matrix.cpp)
target_link_libraries(MasterX ${SDL2_LIBRARIES} SDL2_ttf ${PNG_LIBRARIES} ${ZLIB_LIBRARIES})
2 changes: 1 addition & 1 deletion system/Makefile.em
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ PNG_LIB=$(LIBS_PATH)/libpng/lib/libpng.a


OUTPUT = MasterX.html
SOURCES = src/dimension.cpp src/main.cpp src/splash.cpp src/window.cpp src/terminal.cpp src/mx_controls.cpp src/mx_window.cpp src/mx_system_bar.cpp src/mx_event.cpp src/loadpng.cpp src/masterpiece.cpp src/cfg.cpp
SOURCES = src/dimension.cpp src/main.cpp src/splash.cpp src/window.cpp src/terminal.cpp src/mx_controls.cpp src/mx_window.cpp src/mx_system_bar.cpp src/mx_event.cpp src/loadpng.cpp src/masterpiece.cpp src/cfg.cpp src/matrix.cpp
OBJECTS = $(SOURCES:.cpp=.o)
PRELOAD = --preload-file assets

Expand Down

0 comments on commit 06201f2

Please sign in to comment.