Skip to content

Commit

Permalink
Removes image as a dep for llst
Browse files Browse the repository at this point in the history
  • Loading branch information
kpp committed Aug 12, 2015
1 parent e4b42fe commit ba1e0a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ if (USE_LLVM)
endif()

add_executable(llst src/main.cpp)
add_dependencies(llst image)
#add_dependencies(llst image)

if (USE_LLVM)
target_link_libraries(llst jit ${LLVM_LIBS} ${LLVM_LD_FLAGS})
Expand Down
2 changes: 1 addition & 1 deletion image/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ add_custom_command(
WORKING_DIRECTORY ${IMAGE_DIR}
COMMENT "Building image"
)
add_custom_target(image ALL DEPENDS ${IMAGE_DIR}/LittleSmalltalk.image)
add_custom_target(image DEPENDS ${IMAGE_DIR}/LittleSmalltalk.image)

0 comments on commit ba1e0a8

Please sign in to comment.