From 30601e14f216488ee3a36dc44ab0ed56da7ccdb2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 25 Apr 2020 15:31:09 +0200 Subject: Working ext2 filereader As soon as I implement indirect block pointers, the resources will hopefully work again :) --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 3612ddb..035dd77 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,7 +46,7 @@ add_executable(resources ${resources_sources}) set_target_properties(resources PROPERTIES OUTPUT_NAME "${CMAKE_CURRENT_SOURCE_DIR}/build/font.o") add_custom_command( TARGET resources POST_BUILD - COMMAND cross/opt/bin/i686-elf-objcopy -O binary build/font.o iso/font.bin + COMMAND cross/opt/bin/i686-elf-objcopy -O binary build/font.o build/font.bin WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) @@ -56,7 +56,7 @@ target_include_directories(user PUBLIC "src/userspace/") set_target_properties(user PROPERTIES OUTPUT_NAME "${CMAKE_CURRENT_SOURCE_DIR}/build/user.o") add_custom_command( TARGET user POST_BUILD - COMMAND cross/opt/bin/i686-elf-objcopy -O binary build/user.o iso/user.bin + COMMAND cross/opt/bin/i686-elf-objcopy -O binary build/user.o build/user.bin WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) -- cgit v1.2.3