Skip to content

Commit

Permalink
fix(cmake): add whereami.c to binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
JaDogg committed Mar 1, 2024
1 parent 71968dd commit 995bc91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ target_link_libraries(yakshac PUBLIC ${YAKSHA_COMMON_LIBS})
target_compile_features(yakshac PRIVATE cxx_std_17)

# -- yakshavz - visualizer --
add_executable(yakshavz src/viz_main.cpp)
add_executable(yakshavz src/viz_main.cpp runtime/whereami.c)
target_link_libraries(yakshavz PUBLIC ${YAKSHA_COMMON_LIBS})
target_compile_features(yakshavz PRIVATE cxx_std_17)


# -- yakshadmp - syntax extractor --
add_executable(yakshadmp src/dump.cpp)
add_executable(yakshadmp src/dump.cpp runtime/whereami.c)
target_link_libraries(yakshadmp PUBLIC ${YAKSHA_COMMON_LIBS})
target_compile_features(yakshadmp PRIVATE cxx_std_17)

Expand Down

0 comments on commit 995bc91

Please sign in to comment.