Skip to content

Commit

Permalink
CMakeLists.txt: fix x86 build
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellukashov committed Feb 5, 2017
1 parent 0de1a89 commit f3712ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NetBox/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@ find_program(MASM_EXECUTABLE ml)
# message("masm: ${MASM_EXECUTABLE}")
set(ASM_OBJECTS)
foreach(src vc_crt_fix)
set(ASM_SOURCE ${src}.asm)
set(ASM_SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/${src}.asm)
set(ASM_OBJECT ${CMAKE_CURRENT_BINARY_DIR}/${src}.obj)
set(ASM_OBJECTS ${ASM_OBJECTS} ${ASM_OBJECT})
add_custom_command(
Expand Down

0 comments on commit f3712ff

Please sign in to comment.